<?
header('Content-type: application/rss+xml');
require_once('../dbConn.php');
mysql_select_db($serial_db, $serial_dbConn);
?>
<rss version="2.0">
<channel>
<title>Ballbusting</title>
<description>Women kicking men in the balls videos</description>
<link>http://www.serial-ballbusters.com/</link>
<copyright>Copyright 2005-2007 Interakt LLC</copyright>

<?
$q="
SELECT id, anchor, name AS title, stext, ltext AS body, UNIX_TIMESTAMP( pubdate ) AS pubdate
FROM movie_poll
ORDER BY  `pubdate` DESC 
LIMIT 0 , 15
";
$doGet=mysql_query($q);

while($result = mysql_fetch_array($doGet)){
	$pubdate=strftime( "%a, %d %b %Y %T %Z" , $result['pubdate']);
	$pubdate=str_replace('CEST', 'GMT', $pubdate);
?>
     <item>
        <title><?=htmlentities(strip_tags($result['title'])); ?></title>
		<guid>http://www.serial-ballbusters.com/?all=1#<?=$result['anchor'];?></guid>
        <description> <?=htmlentities(strip_tags($result['stext'].' '.$result['body'],'ENT_QUOTES'));?></description>
        <link>http://www.serial-ballbusters.com/?all=1#<?=$result['anchor'];?></link>
        <pubDate><?=$pubdate?></pubDate>
     </item>  
<? } ?>  

</channel>
</rss>