php feed parsing - What's wrong with this code?
- by Steven
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";
}