php return json to ajax call code example
Example 1: php return json data
header('Content-Type: application/json');
$colors = array("red","blue","green");
echo json_encode($colors);
Example 2: php json response to ajax
<?php
echo json_encode($data);
?>