Ok the following php code is working fine
<?php
$json = file_get_contents('http://tiny.cc/example22');
$obj = json_decode($json);
$example = $obj->{'screen_name'};
?>
User: <?php echo $example; ?>
It shows the screen name ‘muffinlosers’ just like i wanted
But if i change ‘screen_name’ to ‘total_coins’, why it doesn’t show the total coins?
I need help with this, i want just to show the total coins
Thanks
Use
Also, this
Should simply be