<?php
require("head.php");
require("functions/news.func.php");

echo '<?xml version="1.0" encoding="UTF-8" ?>';
echo '<rss version="0.91">';

echo '<channel>';
?>

<title>Earthquake-Radio</title>
<link>http://www.EqR.FM</link>
<description>Earthquake-Radio - loud is not enough</description>
<language>de-de</language>
<copyright>(c) EqR 2003-2007</copyright>
<image>
<url>http://www.EqR.FM/banner/eqr_mini01.jpg</url>
<title>EqR.FM</title>
<link>http://www.EqR.FM</link>
</image>

<?php
$latestnews = getLatestNews(20);
foreach ($latestnews as $ln) {
	?>
	<item>
		<title><?=str_replace("&", "&amp;", html_entity_decode($ln['Title'], ENT_QUOTES, "UTF-8"));?></title>
		<description><?=str_replace("&", "&amp;", html_entity_decode($ln['subtitle'], ENT_QUOTES, "UTF-8"));?></description>
		<link>http://www.EqR.FM/?show=news&amp;c=<?=$ln['category'];?>#<?=$ln['RealID'];?></link>
	</item>
	<?php
}
?>

</channel>
</rss>
