Answers for "php json ajax"

PHP
5

php return json

header('Content-type: application/json');
echo json_encode($array);
Posted by: Guest on March-20-2020
2

php return json data to ajax

header('Content-Type: application/json'); 

$colors = array("red","blue","green");
echo json_encode($colors);
Posted by: Guest on October-30-2019
0

php json response to ajax

<?php
 echo json_encode($data);
?>
Posted by: Guest on September-08-2020

Browse Popular Code Answers by Language