Answers for "passing json format using ajax request in php"

PHP
1

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

Code answers related to "passing json format using ajax request in php"

Browse Popular Code Answers by Language