<?php
// Output XML before ANYTHING else — no whitespace, no BOM
ob_start();
header('Content-Type: application/xml; charset=utf-8');
header('Cache-Control: no-cache');
ob_end_flush();
echo '<?xml version="1.0" encoding="UTF-8"?>' . "\n";
echo '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">' . "\n";

$urls = [
    ['https://realtorroseleen.com/',                  'weekly',  '1.0'],
    ['https://realtorroseleen.com/brampton',          'weekly',  '0.9'],
    ['https://realtorroseleen.com/mississauga',       'weekly',  '0.9'],
    ['https://realtorroseleen.com/orangeville',       'weekly',  '0.9'],
    ['https://realtorroseleen.com/milton',            'weekly',  '0.9'],
    ['https://realtorroseleen.com/barrie',            'weekly',  '0.85'],
    ['https://realtorroseleen.com/kitchener',         'weekly',  '0.85'],
    ['https://realtorroseleen.com/hamilton',          'weekly',  '0.85'],
    ['https://realtorroseleen.com/first-time-buyer',  'monthly', '0.85'],
];

foreach ($urls as $u) {
    echo "  <url>\n";
    echo "    <loc>{$u[0]}</loc>\n";
    echo "    <changefreq>{$u[1]}</changefreq>\n";
    echo "    <priority>{$u[2]}</priority>\n";
    echo "  </url>\n";
}
echo '</urlset>';
exit;