I have a question regarding on json.. I tried to get an api from other site and downloaded it as json file..I've already decoded this file using this code below..
$str = file_get_contents('../trelloApi.json');
$json = json_decode($str, true);
echo '<pre>' . print_r($json, true) . '</pre>';
From this image attached, how do I get or print the value of the [list] => Array, [board] => Array and [card] => Array?
Please help me :(