Answers for "how to show json data in html using php"

1

php return json data

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

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

how to receive json data in php

$data = json_decode(file_get_contents('php://input'), true);
print_r($data);
echo $data;
Posted by: Guest on November-01-2020

Code answers related to "how to show json data in html using php"

Code answers related to "Javascript"

Browse Popular Code Answers by Language