<?php
// 파일의 가장 첫 줄에 아무런 공백이나 줄바꿈이 없어야 합니다.
header("Content-Type: application/xml; charset=utf-8");
include 'db.php';

$stmt = $pdo->query("SELECT COUNT(*) FROM stations");
$total_count = $stmt->fetchColumn();
$limit = 50000;
$total_parts = ceil($total_count / $limit);

echo '<?xml version="1.0" encoding="UTF-8"?>';
echo '<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">';

// 기본 페이지 사이트맵
echo '<sitemap><loc>https://ebo.kr/sitemap_main.php</loc></sitemap>';

// 충전소 리스트 사이트맵 (나누기)
for ($i = 1; $i <= $total_parts; $i++) {
    echo '<sitemap>';
    echo '<loc>https://ebo.kr/sitemap_stations.php?p=' . $i . '</loc>';
    echo '</sitemap>';
}

echo '</sitemapindex>';
?>