I am getting some data from a database and am encoding it to json:
$json = \"\"; if($result = $dbc->query($query)) { $num = $result->num_rows;
Just change $row = $result->fetch_array(); to $row = $result->fetch_assoc();
$row = $result->fetch_array();
$row = $result->fetch_assoc();