I'm trying to parse some data from the World Bank api in a php document. I'm using simplexml_load_file to get the xml from a url like this: http://api.worldbank.org/countries/indicators/IT.NET.BBND.P3?per_page=100&date=1981:2010
But I can't seem to output the data, I'm trying to use a foreach loop like here:
$requestUrl = "http://api.worldbank.org/countries/indicators/IT.NET.BBND.P3?per_page=100&date=1981:2010";
$xml = simplexml_load_file($requestUrl);
foreach($xml->data as $i) {
echo $i->country;
echo $i->date;
echo $i->value;
}
From the reading that I've done this should work but it doesn't, please can someone help me?
Thanks
print_r($xml);right before your foreach and post the output here? Also, what error do you get when you try the above code? – Click Upvote Nov 18 '10 at 23:46