Exellent. Thanks for the help. I have something like this using magpierss and was trying to echo out the images with the stories like google does.
<?php
require_once 'rss_fetch.inc';
$url = 'http://news.google.com/news?hl=en&ned=us&q=thanksgiving&ie=UTF-8&output=rss';
$num_items = 5;
$rss = fetch_rss($url);
$items = array_slice($rss->items, 0, $num_items);
echo "Site: ", $rss->channel['title'], "<br>
";
foreach ($items as $item ) {
$title = $item[title];
$url = $item[link];
echo "<a href=$url>$title</a></li><br>
";
}
?>