I got a JSON from an URL like this:
http://myweb.com/ws_clc/ws_info.php?uid=77317
JSON:
{  
   "status":1,
   "info":[  
      {  
         "uid":"77317",
         "name":"Jack",
         "lastname":"Black",
         "email":"jackblack@mail.com"
      }
   ]
}
I need to format that JSON on HTML. ¿How can I do that?
THANKS!!! I did it like this:
<?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;
?>
