<?php

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

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

// Pages to include in the sitemap:

$sitemappages = array (
     '0' => 'index.php',
     '1' => 'about-us.php',
     '2' => 'contact-us.php',
     '3' => 'commercial-hvac-services.php',
     '4' => 'hvac-services.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>