<?php
// sitemap.php
include('locations.php');
header('Content-Type: application/xml');
echo '<?xml version="1.0" encoding="UTF-8"?>';
?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
    <url>
        <loc>https://savonnemovers.co.za/</loc>
        <priority>1.0</priority>
        <changefreq>monthly</changefreq>
    </url>
    <?php foreach ($locations as $loc): ?>
    <url>
        <loc>https://savonnemovers.co.za/<?= $loc['slug'] ?>/</loc>
        <priority>0.8</priority>
        <changefreq>monthly</changefreq>
    </url>
    <?php endforeach; ?>
</urlset>