Page is a not externally linkable
- Code, Content, and Presentation
-- PHP Server Side Scripting
---- Twitter RSS on your site


RonPK - 3:02 pm on Mar 2, 2012 (gmt 0)


This should get you started:

printf('<tr><td><strong><a href="%s" title="%s">%s</a></strong></td></tr>', $feeds->channel->link, $feeds->channel->title, $feeds->channel->title);
echo '<tr><td><ul>';
foreach($feeds->channel->item as $item) {
printf('<li><a href="%s">%s</a><br>%s</li>' . PHP_EOL, $item->link, $item->pubDate, $item->title);
}
echo '</ul></td></tr>';


Note that this displays the timestamp instead of the ID - seemed more useful to me.


Thread source:: http://www.webmasterworld.com/php/4421048.htm
Brought to you by WebmasterWorld: http://www.webmasterworld.com