CLICK HERE if feed does not load.
{source}
<!– You can place html anywhere within the source tags —>
<script language=”javascript” type=”text/javascript”>// You can place JavaScript like this
</script>
<?php
include ‘onyx-rss.php’;
$rss =& new ONYX_RSS();
$rss->parse(‘http://feeds.feedburner.com/uua’);
while ($item = $rss->getNextItem())
{
echo “<ul><li><a href='”;
echo $item[‘link’];
echo “‘ target=’_blank’>“;
echo $item[‘title’];
echo “</a><br />“;
echo $item[‘description’];
echo “ (<i>“;
echo $item[‘pubDate’];
echo “</i>)</li></ul>“;
}
?>
{/source}