<?
	mysql_connect('localhost','root','secure');
	mysql_select_db('wl90');

	Header("content-type: text/xml");
	echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"; ?>
<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">


<channel>
	<title>Weekend Live with Dean and Sheena</title>
	<link>http://www.weekendlive.co.uk/</link>
	<language>en-gb</language>
	<copyright>&#xA9; WeekendLive.co.uk 2005-<?=$date('Y');?></copyright>
	<itunes:subtitle>A live, weekly talk show from the UK</itunes:subtitle>
	<itunes:author>Dean and Sheena</itunes:author>
	<itunes:summary>A lively talk show broadcast live every Sunday night, then made available for download across the internet. Dean and Sheena discuss issues affecting daily life, the week's news and all of the latest showbiz gossip. Listeners can call the live show and interact with Dean and Sheena, things can get rather interesting!</itunes:summary>
	<description>A lively talk show broadcast live every Sunday night, then made available for download across the internet. Dean and Sheena discuss issues affecting daily life, the week's news and all of the latest showbiz gossip. Listeners can call the live show and interact with Dean and Sheena, things can get rather interesting!</description>

<itunes:owner>
	<itunes:name>Dean and Sheena</itunes:name>
	<itunes:email>studio@weekendlive.co.uk</itunes:email>
</itunes:owner>

<itunes:image href="http://www.weekendlive.co.uk/images/news/ds_26.jpg" />

<itunes:category text="Technology">

<itunes:category text="Gadgets"/>

</itunes:category>

<itunes:category text="TV &amp; Film"/>


<?



$query = "select * from archives order by showdt desc";
$qry = mysql_query($query);

while ($res = mysql_fetch_assoc($qry))
{
?>
<item>
	<title>Weekend Live with Dean and Sheena</title>
	<itunes:author>Dean and Sheena</itunes:author>
	<itunes:subtitle>The <? echo date('d/m/Y H:m', $res['showdt']); ?></itunes:subtitle>
	<itunes:summary>This week we talk about salt and pepper shakers, comparing and contrasting pour rates, construction materials, and overall aesthetics. Come and join the party!</itunes:summary>
	<enclosure url="http://example.com/podcasts/everything/AllAboutEverythingEpisode3.m4a" length="8727310" type="audio/x-m4a" />
	<guid>http://example.com/podcasts/archive/aae20050615.m4a</guid>
	<pubDate>Wed, 15 Jun 2005 19:00:00 GMT</pubDate>
	<itunes:duration>7:04</itunes:duration>
	<itunes:keywords>salt, pepper, shaker, exciting</itunes:keywords>
</item>
<?
}
?>

</channel>
</rss>