<?php

echo "
<?xml version=\"1.0\" encoding=\"UTF-8\"?>
<urlset
      xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\"
      xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"
      xsi:schemaLocation=\"
            http://www.sitemaps.org/schemas/sitemap/0.9
            http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd\">
";

include("siteconfig.inc");

$DOMAIN = "www.globalsigncompany.com";

foreach ($PAGE_DIR AS $xp_key => $xp_id) {

echo "

  <url>
       <loc>http://$DOMAIN/index.php?page=$xp_id</loc>
       <lastmod>".date("Y-m-d")."</lastmod>
       <priority>0.90</priority>
       <changefreq>daily</changefreq>
  </url>

";

}

echo "
</urlset>
";

?>