Şöyle birşey kullanabilirsin.
sitemap.php <?php
header("content-type: text/xml");
echo '<?xml version="1.0" encoding="UTF-8"?>';
?>
<urlset
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://www.sitemaps.org/schemas/sitemap/0.9
http://www.sitemaps.org/schemas/sitemap/09/sitemap.xsd">
<?php
$sonuc = mysql_query("Select id From tablom order by id DESC");
while($satir = mysql_fetch_assoc($sonuc)){
?><url>
<loc>http://www.sitem.com/icerik.php?id=<?php echo $satir[id]; ?></loc>
<priority>0.5</priority>
<changefreq>daily</changefreq>
</url>
<?php
}
?>
</urlset>Sayfan hazırsa,
<?php
header("content-type: text/xml");
echo '<?xml version="1.0" encoding="UTF-8"?>';
?>bunu yukarıya yazabilirsin.