sanırım işini görür.
<?php
include_once("Ayar.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 * from icerik order by id desc");
while($satir = mysql_fetch_assoc($sonuc)){
?><url>
<loc>siteadi.com/<?php echo $satir[baslik]; ?></loc>
<priority>0.5</priority>
<changefreq>daily</changefreq>
</url>
<?php
}
?></urlset>