require_once('magpierss/rss_fetch.inc');
$rss=fetch_rss('http://www.mercatx.com/serendipity/index.php?/feeds/categories/7-News.rss');
echo "
";
foreach ($rss->items as $item ) {
$title = $item[title];
$url = $item[link];
$id = $item[guid];
preg_match("/[0-9]+/",$url,$matches);
$artid=$matches[0];
// echo "
", $title, "" ;
echo "", $title, "
" ;
}
?>