<?php

require_once 'config/database.php';

header("Content-Type: application/xml; charset=utf-8");

$total = $pdo->query("SELECT COUNT(*) FROM anuncios WHERE status='ativo'")
             ->fetchColumn();

$por_pagina = 50000;

$total_sitemaps = ceil($total / $por_pagina);

echo '<?xml version="1.0" encoding="UTF-8"?>';

?>

<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">

<?php for ($i = 1; $i <= $total_sitemaps; $i++): ?>

<sitemap>
<loc><?= BASE_URL ?>/sitemap-anuncios-<?= $i ?>.xml</loc>
</sitemap>

<?php endfor; ?>

</sitemapindex>