Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
Welcome to SO. What happens or doesn't happen? What errors do you get? – Pekka 웃 Nov 18 '10 at 23:36
Can you do 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

1 Answer

up vote 0 down vote accepted
<?php

$ns='wb';

$xml = simplexml_load_file($requestUrl);

foreach($xml->children($ns,true) as $i) {
    echo $i->country;
    echo $i->date;
    echo $i->value;
}

?>

http://php.net/manual/en/simplexmlelement.children.php (see: Example #2 Using namespaces)

share|improve this answer
Brilliant - working perfectly, thanks Stewe! – mattholl Nov 19 '10 at 23:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.