View Single Post
Old 03-11-2006, 01:54 PM  
mrkris
Confirmed User
 
Join Date: May 2005
Posts: 2,737
If you install XML_RSS from PEAR, it's simple:

Quote:
<?php
require_once 'XML/RSS.php';

$rss =& new XML_RSS('http://www.somedomain.com/rss');
$rss->parse();

foreach ($rss->getItems() as $item) {
echo "<a href='{$item['link']}'>{$item['title']}</a><br />";
}
?>
If you need more help, hit me up on ICQ.
__________________

PHP-MySQL-Rails | ICQ: 342500546
mrkris is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote