Answers for "can you pass a return_json from a php to another php file"

PHP
-1

Returning JSON from a PHP Script

<?php
$data = /** whatever you're serializing **/;
header('Content-Type: application/json; charset=utf-8');
echo json_encode($data);
Posted by: Guest on November-18-2021

Code answers related to "can you pass a return_json from a php to another php file"

Browse Popular Code Answers by Language