<?php
header("Content-Type: application/xml; charset=UTF-8");

$api = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . '/api/global.php'), true);

echo '<?xml version="1.0" encoding="UTF-8"?>';
?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">

  <url>
    <loc>https://flagscollection.com/</loc>
    <changefreq>weekly</changefreq>
    <priority>1.0</priority>
  </url>

<?php foreach ($api['categories'] as $cat): ?>
  <url>
    <loc>https://flagscollection.com/fr/<?php echo $cat['id']; ?>.php</loc>
    <changefreq>monthly</changefreq>
    <priority>0.8</priority>
  </url>
<?php endforeach; ?>

</urlset>
