I want to take a rss feed, like this http://rss.news.yahoo.com/rss/topstories
and have it translate onto a php page....any idea how to do this?
and have it translate onto a php page....any idea how to do this?
<?php
$olderror_reporting =error_reporting(0);
include ("http://www.rssfeedreader.com/rss3/rss.php?url=http%3A%2F%2Fwww.ainews.com%2Fnewsfeed%2FAINewsFP.rss&newpage=1&chead=&atl=&desc=1&owncss=&eleminate=&auth=1&dts=1&width=745&max=15&tlen=0&rnd=1&bt=3&bs=None&nmb=&ntb=&naf=&nst=&nwd=0&nht=0&dlen=0&lstyle=1&lc=&dlttime=0&bg=%23ff96d9&bc=BLUE&spc=&ims=&tc=BLACK&ts=10&tfont=Verdana,+Arial,+Sans-serif&rf=".$HTTP_SERVER_VARS['SERVER_NAME'].$HTTP_SERVER_VARS['PHP_SELF']."&phpout=1");
error_reporting($olderror_reporting);
?>

Comment