XML Php

$url = 'http://rss.news.yahoo.com/rss/oddlyenough';
$rss = simplexml_load_file($url);
print '
    ';
    foreach ($rss->channel->item as $item) {
       print '
  •          htmlentities($item->link) .
             '">' .
             htmlentities($item->title) .
             '
  • ';
    }
    print '
';
?>