query($sql); if ($result->num_rows > 0) { // Array to hold the results $rows = array(); // Fetch data from each row and add it to the array while($row = $result->fetch_assoc()) { $rows[] = $row; $count=$count + 1; } } else { //echo "0 results"; } header('Content-Type: application/json'); echo json_encode([$rows,"count"=>"$count"]); } $conn->close(); ?>