<?php

header('Content-Type: application/xml; charset=utf-8');

echo '<?xml version="1.0" encoding="UTF-8"?>';
?>

<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">

    <url>
        <loc>https://trustpill.in/</loc>
    </url>

<?php for ($id = 1; $id <= 8095; $id++): ?>

    <url>
        <loc><?= htmlspecialchars("https://trustpill.in/productpage.php?id=" . $id) ?></loc>
    </url>

<?php endfor; ?>

</urlset>