<?header ("content-type: text/xml");?>
<?echo '<?xml version="1.0" encoding="UTF-8" ?>';?>
<?echo '<urlset xmlns="http://www.google.com/schemas/sitemap/0.84" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.google.com/schemas/sitemap/0.84 http://www.google.com/schemas/sitemap/0.84/sitemap.xsd">';?>
<? $t =date('Y-m-d',time()).'T00:00:00+00:00';?>
<url>
        <loc>http://bestfounddeals.com/</loc>
        <lastmod><?echo $t;?></lastmod>
        <changefreq>daily</changefreq>
        <priority>1</priority>
        </url>
<?
include('sitemap.php');
 foreach(glob("stores/*.html") as $key => $value)
 {
  $link = "http://bestfounddeals.com/$value";
  echo "<url>
        <loc>$link</loc>
        <lastmod>$t</lastmod>
        <changefreq>daily</changefreq>
        <priority>0.8</priority>
        </url>\r\n";
 }
?>
</urlset>