Come integrare feed nel tuo sito web

Avanzato

<?php

$sUrl 
"http://it.audiofanzine.com/sequencer-generale/steinberg/Cubase-5/editoriale/Test/a.rss.xml";
$oXML = new SimpleXMLElement($sUrlNULLTRUE);

echo 
'<h1>' $oXML->channel->title '</h1>';

echo 
'<ul>';
foreach(
$oXML->channel->item as $oItem)
{
   echo 
'<li>' date("d/m/Y"strtotime($oItem->pubDate)) . ' -
   <a href="' 
$oItem->link '" style="text-decoration:none; color:#33F;">
      ' 
$oItem->title '
   </a>
   <div style="color:#888; width:450px; text-align:justify;">
      ' 
$oItem->description '
   </div></li>'
;
}
echo 
'</ul>';

\
?>