query($sql); $end = microtime(true); $execution_time = $end - $start; $data = array(); if ($result->num_rows > 0) { while($row = $result->fetch_assoc()) { $data[] = $row; } } else { $data[] = "No result"; } echo json_encode(array("data" => $data,"time"=>$execution_time)); ?>