Page is a not externally linkable
- Code, Content, and Presentation
-- RSS, ATOM, and Related Technologies
---- Magpie problems


mboydnv - 11:26 pm on May 23, 2005 (gmt 0)


leave the fecth.inc file alone.

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


Thread source:: http://www.webmasterworld.com/rss_atom/255.htm
Brought to you by WebmasterWorld: http://www.webmasterworld.com