<?php

function curPath() {
     return str_replace ("sitemap.xml", "", $_SERVER["REQUEST_URI"]);
}

header ("Content-Type: text/xml");

include ('./setts.php');

echo "<?xml"; ?> version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">

<?php

foreach ($sitemappages as $pagename) {
     ?>
<url>
     <loc><?php echo "http://" . $_SERVER["SERVER_NAME"] . curPath() . $pagename; ?></loc>
     <lastmod><?php echo date("Y-m-d"); ?></lastmod>
     <changefreq>monthly</changefreq>
</url>
<?php
}

?>

</urlset>