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 using Simple HTML DOM Parser to receive certain info that i require, but it seems like the parser outputs the 1st. item it finds. I'm using this code:

$html = file_get_html("http://steamcommunity.com/id/" . $username . "/wishlist/");
foreach($html->find('.wishlistRow') as $e)
{
$item = $e->outertext;
}
echo $item;

this outputs the 2nd item on the wishlist, but not the first. This also applies to other projects i'm working on, and i would really appreciate any help I can get!

share|improve this question
We need to see your XML – Explosion Pills Apr 23 '12 at 18:26

1 Answer

up vote 2 down vote accepted

echo is out of the foreach, so it will only output the last item. Move it inside foreach.

share|improve this answer
Wow. I can't believe i missed that. Thank you! – Mats Bakken Apr 23 '12 at 18:34

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.