How do I get the data under [t]?
JSON data:
$array=  json_decode($json);
echo "<pre>";
print_r($array[something blah blah]);
echo "</pre>"
How do I get the data under [t]?
JSON data:
$array=  json_decode($json);
echo "<pre>";
print_r($array[something blah blah]);
echo "</pre>"
 
    
     
    
    Either you convert the json object to an array, or access it as an object:
$json->manga[0]->t;
