<?php  
header('Content-Type: text/xml');
echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
echo "<?xml-stylesheet type=\"text/xsl\" href=\"http://www.realoyuncu.com/wp-content/plugins/google-sitemap-generator/sitemap.xsl\"?>\n";
echo "<urlset 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/0.9/sitemap.xsd\" xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">\n"; 
include("baglan.php");
$sorgu=mysql_query("SELECT *  FROM gallery ORDER BY id DESC");

echo '<gallery>

        <album lgPath="album1/images/" tnPath="album1/thumb/" title="Album title" description="Album description" tn="album1/preview.jpg">';
while($sonuc=mysql_fetch_assoc($sorgu)){		  
		  echo '<img src="'.$sonuc["imgoriginalname"].'" title="" caption="" link="" target="_blank" pause="" />';
}		  
		echo '</album>

</gallery>\n';

echo '</urlset>';
?>