How to integrate the feeds in your website
Advanced
<?php
$sUrl = "http://en.audiofanzine.com/plugin-dynamic-processor/waves/vocal-rider/news/a.rss.xml";
$oXML = new SimpleXMLElement($sUrl, NULL, TRUE);
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>';
\?>