Page is a not externally linkable
mboydnv - 11:26 pm on May 23, 2005 (gmt 0)
On the file that you want your feed to be on simply paste in this: <?php ?> Regards, Michael
leave the fecth.inc file alone.
require_once 'rss_fetch.inc';
$url = 'http://search.msn.com/results.aspx?q=grand+canyon&format=rss&FORM=ZZRE';
$rss = fetch_rss($url);
foreach ($rss->items as $item ) {
$title = $item[title];
$url = $item[link];
$desc = $item[description];
echo "<a href=$url>$title</a><br>$desc<P>\n";
}