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: 156
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