That helps a lot but where would I put this code? I've highlighted in RED where I thought it would go but it doesn't seem to be right.
<?php
include('connection/my_connect.php');
$detailsTable = "news";
$sql_select="select * from news";
$result=mysql_query($sql_select);
$today=date("Y-m-d");
?>
<?php header("Content-Type: application/xml; charset=ISO-8859-1"); ?>
<?php echo "<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>"; ?>
<rss version="2.0">
<channel>
<title>My Website</title>
<description>My Website Description.</description>
<pubDate>Thu, 27 Apr 2006</pubDate>
<link>http://www.vegasauditions.com</link>
<?php while($item = mysql_fetch_array($result)) {
$mysql_date = $item['date'];
$rss_date = date("D, d M Y", strtotime($mysql_date));
?>
<item>
<title><?php echo "TITLE: ".$item['new_word'].' '.$item['show_name']?></title>
<description><?php echo "Company: " .$item['company']."<br> Location: ".$item['audition_city']?></description>
<pubDate><?php echo [COLOR="Red"]$rss_date[/COLOR] ?></pubDate>
<link>http://www.mywebsite.com</link>
</item>
<?php } ?>
</channel>
</rss>