<?php 
header("Content-type: text/xml");
echo"<?xml version=\"1.0\" encoding=\"windows-1251\"?>";
include "../lib/config.php";
?><rss version="2.0">
<channel>
<title>UNDP Uzbekistan news RSS feed</title>
<link><?=$default->news_url;?></link>
<?php
     $sql = new Owl_DB;
	 $sql->query("SELECT * FROM $default->owl_news_table WHERE status = '1' AND title$default->table_prefix != '' AND for_undp = '1' ORDER BY publish_date DESC limit 10");
     
 if ($sql->num_rows($sql)>0)
{   
     while ($sql->next_record())
   { 
?> 
     <item> 
        <title><?php echo $sql->f("title$default->table_prefix"); ?></title> 
        <description><?=htmlspecialchars(strip_tags($sql->f("description$default->table_prefix"))); ?></description> 
        <link><?=$default->news_url."story.php?id=".$sql->f(id);?></link> 
        <pubDate><?=date('M. d, Y', strtotime($sql->f(publish_date))); ?></pubDate> 
     </item>    
<? 
	   
    }
}
 ?>  
</channel>
</rss>


