|
|
|
\n";
echo "\n";
$rss = fetch_rss( $url );
echo $rss->channel['title'] . "\n";
echo "\n";
$rssEntryCount = count($rss->items);
$maxEntries = ($rssEntryCount > 2 ? 2 : $rssEntryCount);
for ($entryNdx = 0 ; $entryNdx < $maxEntries ; $entryNdx++) {
$item = $rss->items[$entryNdx];
$href = $item['link'];
$title = $item['title'];
echo "- $title
\n";
}
echo " \n";
echo " | \n";
echo "\n";
}
?>
|
|
|
Copyright 2002-2008 Tempus Dictum, Inc. All right reserved.