"; $rss = fetch_rss( $url ); echo slashbox ($rss); } echo "
";
print_r($rss);
echo "
"; ?> "; echo ""; # get the channel title and link properties off of the rss object # $title = $rss->channel['title']; $link = $rss->channel['link']; echo "$title"; echo ""; # foreach over each item in the array. # displaying simple links # # we could be doing all sorts of neat things with the dublin core # info, or the event info, or what not, but keeping it simple for now. # foreach ($rss->items as $item ) { echo ""; echo ""; echo $item['title']; echo ""; } echo ""; } ?>