<?php
header('Content-type: text/xml');
include ('config.php');
?>

<rss version="2.0">
<channel>
    <title>Top 10 </title>
    <description>Top 10 url's ordered by views!</description>
    <link>http://bladi-search.com</link>

<?
$sql = "SELECT * FROM pagerank GROUP BY url ORDER BY views DESC LIMIT 10";
$result = mysql_query($sql);
while($row = mysql_fetch_assoc($result)){
?>

<item>
     <title><?=$row['url']; ?></title>
     <author><?=$row['views']; ?></author>
     <link>http://www.bladi-search.com</link>
</item>

</channel></rss>
