Hello, how do you display an rss feed on your own site: you see i want this rss feed: http://twitter.com/statuses/user_timeline/31471128.rss to display on my site: http://InviteToLockerz.tk I am building a new design and the rss feed will be a part of it -John
Twitter RSS is a script that reads in your Twitter RSS feed and formats it for the web, so that you can include your recent Twits on your website. It attempts to read the RSS file using the cURL extension (if it's installed) and the fopen() option if not. code.kerison.com/twitter/
Played with simplexml and got it to show <?php ###----NUMBER OF TWITTER POSTS TO SHOW----#### $numTwits = 5; ###----RSS FEED OF THE TWITTER URL--------#### $url = "http://twitter.com/statuses/user_timeline/31471128.rss"; $xml = simplexml_load_file($url); $i = 1; ?> <table> <?php foreach($xml->channel->item as $items) { echo "<tr><td>".$items->title."</td></tr>"; if($i == $numTwits){ break; }else{ $i++; } } ?> </table> PHP: