<?php
/**
* displayRSS parses and displays RSS feeds, and optionally, produces CSS enabled HTML pages
*
* @author Michael J. Burgess
* @package Example.displayRSS
* @version 1.0
* @copyright GNU Public Licence, Versions 2 and above
* @see root/docs/manual.html
*
* @example RSS Feeds
* http://www.quotationspage.com/data/qotd.rss
* http://dictionary.reference.com/wordoftheday/wotd.rss
* http://www.wired.com/rss/index.xml
*/
include('../../ScriptBox.class.php');
$sb = new ScriptBox('../../common/');
$rssFile = 'http://michael.users.phpclasses.org/browse/latest/latest.xml';
?>
<html>
<head><title>RSS</title></head>
<body>
<? $sb->displayRSS($rssFile, '', 'RSS Feed', 'false'); ?>
</body>
</html>