Arkadaşların eleştiri ve öneri seanslarına açıyorum
Öldürmeden her türlü vuruş serbest

İşte hazırladığım PHP Site Map. Toplam 1 KB (Veri tabanı için Joomla örnek alınmıştır)

<?php
include("configuration.php");
echo '<?xml version="1.0" encoding="UTF-8"?>  <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">'; 
$icerik=mysql_query("SELECT id FROM jos_content WHERE state='1'");

  while($row = @mysql_fetch_array($icerik))
    {
        $id=$row['id'];
	echo "<url> <loc>http://www.sitenizinadi.com/devami.php?id=$id</loc>
		<changefreq>daily</changefreq>   
        <priority>0.5</priority>  </url>";
  }

echo '</urlset>'; 
?>