<?php  echo '<?xml version="1.0" encoding="iso-8859-1" ?>' ?>


<rss version="2.0">

<channel>
  <title>The Carter Group - Career News and Information </title>
  <description>Your best source for career information </description>
  <link> http://www.hampsterdance.com</link>

  <language>en-us</language>
  <copyright>Copyright 2005 The Carter Group, L.L.C. All Rights Reserved</copyright>
  <managingEditor>The Carter Group</managingEditor>
  <webMaster>lvto_2000@yahoo.com</webMaster>


<?php

 require_once('config.php');
 require_once('../PROCESSORS/conndb.php');

$dbQuery = "SELECT title, link, description, author, guid FROM rsstable ORDER BY title";
$result = mysql_query($dbQuery) or die("Couldn't get file list");


while($row = mysql_fetch_array($result))
{

?>
        <item>
                <title> <?php echo $row["title"]; ?> </title>
                <link> <?php echo $row["link"]; ?> </link>
                <description> <?php echo $row["description"]; ?> </description>
                <author> <?php echo $row["author"]; ?> </author>
                <guid isPermaLink="false"><?php echo $row["guid"]; ?></guid>
        </item>
<?php
};


echo "</channel>";
echo "</rss>";
?>
