<? header('Content-type: text/xml'); ?>

<rss version="2.0">
<channel>
<title>Vrij-Spel.com</title>
<description>Alleen de beste games voor jou!</description>
<link>http://www.vrij-spel.com/</link>

<?
include('config.php');
mysql_connect($host,$gebruikersnaam,$wachtwoord); 
mysql_select_db($db);
$sql = 'SELECT * FROM `games` ORDER BY `id` DESC LIMIT 0, 10'; 
$query = mysql_query($sql);
while ($show = mysql_fetch_object($query)){
?> 
     <item> 
        <title> <?=htmlentities(strip_tags($show->naam)); ?></title> 
        <link>http://www.vrij-spel.com/<?=$show->id;?>.html</link>
        <guid>http://www.vrij-spel.com/<?=$show->id;?>.html</guid> 
     </item>    
<? } ?>  

</channel>
</rss>
