<?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 Vacancies RSS feed</title>
<link><?=$default->jobs_url;?></link>
<?php
 	
 $sql = new Owl_DB;
$sql->query("SELECT * FROM  $default->owl_vacancy_table WHERE end_date  >= '$tod' AND for_undp = '1' ORDER BY posted_date DESC");


 if ($sql->num_rows($sql)>0)
{
	   
     while ($sql->next_record())
   {
	 
?> 
     <item> 
        <title><?=htmlspecialchars(strip_tags($sql->f("title"))); ?></title> 
        <deadline><?= date('M. d, Y', strtotime($sql->f(end_date))); ?></deadline> 
        <link><?=$default->jobs_url."vacancy.php?id=".$sql->f(id);?></link> 
        <pubDate><?=date('M. d, Y', strtotime($sql->f(posted_date))); ?></pubDate> 
     </item>    
<? 
	   
    }
}
 ?>  
</channel>
</rss>

