php feed parsing - What's wrong with this code?

Posted by Steven on Stack Overflow See other posts from Stack Overflow or by Steven
Published on 2010-04-16T21:42:34Z Indexed on 2010/04/16 21:53 UTC
Read the original article Hit count: 135

Filed under:
|

this code was working, but now it doesn't! Can anyone help?

$rss = simplexml_load_file("http://search.twitter.com/search.atom?lang=en&q=charlton&rpp=100&page=1");

foreach($rss->entry as $item){

$title = $item->title;

print "$title";

}

© Stack Overflow or respective owner

Related posts about php

Related posts about rss