Page is a not externally linkable
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.