div.rss_title
		{
			border-bottom: #000077 dashed 1px;
		}

		div.rss_pubdate
		{
			border-bottom: #000077 dashed 1px;
			font-size:10px;
		}


	</style> 
</head>
<body onload="" onunload="">
<?php 
// PHP execution for the rss_reader
include_once "rss_reader.php";
$rss_reader = new RSSReader();
//$rss_reader->set_file_to_parse("sample-rss-2.xml");
$rss_reader->set_file_to_parse("http://codingnotes.alephcipher.com/feed/");
$rss_data = $rss_reader->parse_file();
//var_dump($rss_data);
//echo RSSReader::rss_array_to_html($rss_data); // smallest possible function call
echo RSSReader::rss_array_to_html($rss_data, 3, 0, "082", true);
?>

</body>
</html>