Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

137
Views
How to retrieve json data from php

i want to retrive json data from php with ajax and output it for test. but it did not work.

Client index.php

<html>
<head>
<title>kakak</title>
</head>
<body>
<p id="demo"></p>

<script>

var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function() {
    if (this.readyState == 4 && this.status == 200) {
        myObj = JSON.parse(this.responseText);
        document.getElementById("demo").innerHTML = myObj.name;
    }
};
xmlhttp.open("GET", "json.php", true);
xmlhttp.send();

</script>
</body>
</html>

And this's json.php already have object.

<?php

$myArray = ["name" => "john", "age" => 30, "city" => "Japan"];

$myObj = json_encode($myArray);

?>

I want to retrieve object name but it dont ouput anything.

about 4 years ago · Santiago Trujillo
1 answers
Answer question

0

You need to echo the JSON string in PHP code.

echo $myObj;

Final code would be:

<?php

$myArray = ["name" => "john", "age" => 30, "city" => "Japan"];
$myObj = json_encode($myArray);
echo $myObj;
// or directly
// echo json_encode($myArray);
?>
about 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!