<?php header('Content-type: application/xml; charset=utf-8'); ?><?php echo '<?xml version="1.0" encoding="UTF-8"?>'; ?>

<?php
  require_once "/var/www/vhosts/socanews.com/httpdocs/cmsAdmin/lib/viewer_functions.php";


  list($newsRecords, $newsMetaData) = getRecords(array(
    'tableName'   => 'news',
	'orderBy'     => "date ASC", 
  ));

?>

<rss version="2.0"> 
  <channel> 
    <title>www.socanews.com</title> 
      <link>http://www.socanews.com</link> 
      <description>Caribbean Music News and Culture</description> 
      <pubDate><?php echo date('r'); ?></pubDate> 
      <language>en-us</language>

<?php foreach ($newsRecords as $record): ?> 
        <item> 
          <title><?php echo htmlspecialchars($record['title']) ?></title> 
          <link>http://www.socanews.com/articles/<?php echo $record['_link'] ?></link> 
          <description><?php echo htmlspecialchars($record['summary']); ?></description> 
          <pubDate><?php echo date("r", strtotime($record['date'])) ?></pubDate> 
          <guid isPermaLink="true">http://www.socanews.com/articles/<?php echo $record['_link'] ?></guid> 
        </item> 
<?php endforeach ?> 
 
  </channel> 
</rss>

