<?php
	
	if ($xml = @simplexml_load_file("http://news.google.com/news?geo=02138"))
	{
		foreach ($xml->channel->item as $item)
		{
			echo '<a href = "'.(string) $item->link.'">'.(string) $item->title.'</a><br />';
		}
	}
	
?>