-3
ideal is for you to convert this json to php object.
using the function of json_decode You generate an object and then display only the data you want on the screen. = D
<?php
$json = '{"foo-bar": 12345}';
$obj = json_decode($json);
print $obj->{'foo-bar'}; // 12345
?>
Take a look at this question
– Costamilam
Friend post the code and not the image! Sometimes the tag
<pre>
can help you... https://developer.mozilla.org/en-US/docs/Web/HTML/Element/pre– hugocsl