<?php require_once "./rss_fetch.php"; $url = "http://z.about.com/6/g/wine/b/rss2.xml"; $show = 3; $html = "<a href='#{link}' target='_new'>#{title}</a><br />#{description}<br /><br />"; $update = 1; $start = 5; $rss = new rss_parser($url, $show, $html, $update, $start); //The optional 5th paramter tells which item to show feeds from. So the 5 says to start from the 5th feed item. ?>
|