PHP RSS Feeds from rssfeedreader.com not working, help me

manups

New Member
Messages
14
Reaction score
0
Points
0
the code is

<?php
$olderror_reporting =error_reporting(0);
include ("http://rssfeedreader.com/rss3/rss.php?url=http%3A%2F%2Ffeeds.feedburner.com%2Fcr icketscores&newpage=1&chead=&atl=&desc=1&owncss=&e leminate=1&auth=1&dts=1&width=300&max=5&tlen=0&rnd =1&bt=3&bs=Double&nmb=&ntb=&naf=&nst=&nwd=0&nht=0& dlen=0&lstyle=-1&lc=Blue&bg=White&bc=Gray&spc=&ims=&tc=&ts=11&tfo nt=Verdana,+Arial,+Sans-serif&rf=".$HTTP_SERVER_VARS['SERVER_NAME'].$HTTP_SERVER_VARS['PHP_SELF']."&phpout=1");
error_reporting($olderror_reporting);
?>


i tested the code on a test.php page, manups.co.cc/test.php but failed to display the feed. how to make the code working on my site:happysad:
 

tittat

Active Member
Messages
2,478
Reaction score
1
Points
38
*****Thread Moved to Programming Help*****
 

xav0989

Community Public Relation
Community Support
Messages
4,467
Reaction score
95
Points
0
are you allowed to get content through http with the include function?
 

xPlozion

New Member
Messages
868
Reaction score
1
Points
0
include does not work for external sites. You would want to try simplexml, file_get_contents, fopen, etc... you also need to have intermediate php level
 
Top