• Jobs
  • About Us
  • professionals
    • Home
    • Jobs
    • Courses and challenges
  • business
    • Home
    • Post vacancy
    • Our process
    • Pricing
    • Assessments
    • Payroll
    • Blog
    • Sales
    • Salary Calculator

0

330
Views
¿Cómo formatear un json desde una URL en php?

Obtuve un JSON de una URL como esta:

http://myweb.com/ws_clc/ws_info.php?uid=77317

JSON:

 { "status":1, "info":[ { "uid":"77317", "name":"Jack", "lastname":"Black", "email":"jackblack@mail.com" } ] }

Necesito formatear ese JSON en HTML. ¿Cómo puedo hacer eso?

¡¡¡GRACIAS!!! Lo hice así:

 <?php $uid =$_GET['uid']; $json = file_get_contents('http://myweb.com/ws_clc/ws_info.php?uid='.$uid); $obj = json_decode($json); $uid= $obj->info[0]->uid; $name = $obj->info[0]->name; $lastname = $obj->info[0]->lastname; echo $name; echo $lastname; ?>
about 3 years ago · Santiago Trujillo
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Our process Sales
Legal
Terms and conditions Privacy policy
© 2025 PeakU Inc. All Rights Reserved.

Andres GPT

Recommend me some offers
I have an error