<? header('Content-type: text/xml'); ?>
<rss version="2.0">
<channel>
<title>Basement Waterproofing and Crawl Space Repair in Connecticut</title>
<description>Connecticut Basement Systems is the Authorized Basement Systems Dealer in Connecticut</description>
<link>http://www.connecticutbasementsystems.com</link>
<copyright>Connecticut Basement Systems</copyright>
<?php
include "/home/config/config_bs.php";	  
$q="SELECT title, post FROM dealer_blog WHERE (dealer_id = '15') AND (validate = '1') ORDER BY blog_id DESC LIMIT 15";
$doGet=mysql_query($q);
?>
<?php
while($result = mysql_fetch_array($doGet)){
$title2 = str_replace(" ", "-", "{$result['title']}");
?>
     <item>
        <title> <?=htmlentities(strip_tags($result['title'])); ?></title>
        <description> <?=htmlentities(strip_tags($result['post'],’ENT_QUOTES’));?></description>
        <link>http://connecticutbasementsystems.com/blog.php?post=<?=$title2;?></link>
     </item>  
<? } ?> 
</channel>
</rss>


