I have the following PHP code, which prints out the results shown in this link: http://www.visitrack.co.uk/testdata2.php
$json = "http://api.duedil.com/sandbox/v2/company/03977902.json fields=get_all&api_key=***";
$jsonfile = file_get_contents($json);
var_dump(json_decode($jsonfile,true));
What i am trying to do is split the results in to individual php variables. The code below is my attempt, however it doesn't return an error or any results.
$url="http://api.duedil.com/sandbox/v2/company/03977902.json?fields=get_all&api_key=2gwhy5py2zfdzpnf3ev3dsjs";
$json = file_get_contents($url); $response = json_decode($json, TRUE);
echo $requestId->Response->id->value;
Any suggestions would be appreciated. Thanks
truevalue when you don't know what it does? – Lix Mar 14 at 22:07var_dumpshows exactly what it is, an array, so you access it like an array and not like an object. – jeroen Mar 14 at 22:07