Forum Moderators: open
I've tried adding $url = 'www.example.com/example.xml" to the top of my php page and that didn't help. I also tried to add that to the rss_fetch.inc file with no success either.
Can anyone tell me where to define the URL of the feed?
On the file that you want your feed to be on simply paste in this:
<?php
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";
}
?>
Regards,
Michael