<?php
header('Content-type: text/xml');
?>
<rss version="2.0">
<channel>
	<title>VoiceCoach.ie - News Headlines</title>
	<description>A description of your site</description>
	<link>http://www.voicecoach.ie/</link>
	<copyright>2007 VoiceCoach.ie</copyright>

<?php
include_once("includes/db_connect.php");

$sql = "SELECT * 
		FROM news
		ORDER BY date_added DESC ";
$res = mysql_query($sql, $db);
while($row = mysql_fetch_array($res))
{
	echo "	<item>\n";
	echo "		<title>" . $row['heading'] . "</title>\n";
	//echo "		<description>" . substr($row['content'], 0, 50) . "...</description>\n";

	echo "		<link>http://www.voicecoach.ie/show_news.html?article=" . $row['id'] . "</link>\n";
	echo "		<guid>http://www.voicecoach.ie/show_news.html?article=" . $row['id'] . "</guid>\n";
	echo "	</item>\n";
}
?>

</channel>
</rss>