json data comingdata coming from database javascript function
function fetch_data() {
var dataTable = $('#Acc_data').DataTable({
"bPaginate": false,
"info": false,
"processing": true,
"serverSide": true,
"order": [],
"ajax": {
url: "fetch_acc.php",
type: "POST",
"dataSrc": ""
}
});
}
HTML code
<table class="table" id="Acc_data" style="margin-left:30px;">
<thead class=" text-primary text-center">
<tr>
<th>
Account#
</th>
<th>
Status
</th>
<th>
Assigned_To
</th>
<th></th>
</tr>
</thead>
</table>
PHP code
while($row = mysqli_fetch_array($result))
{
$sub_array = array();
$sub_array[] = '<div contenteditable class="update text-center" data-id="'.$row["id"].'" data-column="Account#">' . $row["Accno"] . '</div>';
$sub_array[] = '<div contenteditable class="update text-center" data-id="'.$row["id"].'" data-column="Status">' . $row["stat"] . '</div>';
$sub_array[] ='<div contenteditable class="update text-center" data-id="'.$row["id"].'" data-column="Assigned_To">' . $row["email"] . '</div>';
$sub_array[] = '<button type="button" name="delete" class="btn btn-danger btn-xs delete" id="'.$row["id"].'"><i class="fa fa-trash" aria-hidden="true"></i></button>';
$data[] = $sub_array;
}
$output = array(
"data" => $data
);
echo json_encode($output);
this is creating the error "DataTables warning: table id=Acc_data - Invalid JSON response. For more information about this error, please see http://datatables.net/tn/1". I have searched a lot but didn't find where I have done mistake. Any sort of help will be appreciated. Thanks in advance