<?php
$xml = simplexml_load_file("http://www.amhpdf.com.br/rss/rss.xml");
foreach($xml->channel->item as $item){
echo "<a href='" . $item->link . "'target='blank' >" . $item->title . "</a><br />";
echo $item->description."<br /><br />";
}
?>