XML no worky. why?

Can someone see what I am doing wrong here…

$rss_url = "http://xml.thinkspain.com/think-spain-feeds/spanish-news.xml";

$xml = simplexml_load_file($rss_url);

foreach($xml->item as $item)
{
echo $item->title.'<br>'.$item->link.'<br>'.$geoname->description.'</a><hr>';
}

Change $xml->item to $xml->channel->item

I see how that works. thanks.