webloader hangi sürümü dostum ?
bendekinin kodlarını koyıyım dene bakalım bir
<?
print_r('<?xml version="1.0" encoding="UTF-8"?>
<urlset
xmlns="http://www.google.com/schemas/sitemap/0.84"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.google.com/schemas/sitemap/0.84
http://www.google.com/schemas/sitemap/0.84/sitemap.xsd">');
include 'baglan.php';?>
<url>
<loc><?=$siteurl?></loc>
<changefreq>daily</changefreq>
</url>
<?
$saydim=solsay("tag");
$count = $saydim;
$perpage = 20000;
$page = !empty($_GET["page"]) ? intval($_GET["page"]) : 1;
$s = ($page-1)*$perpage;
$cek=mysql_query("SELECT * FROM tag order by id ASC LIMIT $s,$perpage");
while($veri=mysql_fetch_array($cek))
{
$seo=$veri['tr'];
$id=$veri['id'];
?>
<url>
<loc><?=$siteurl?><?=etiketsef($id,$seo)?></loc>
<changefreq>daily</changefreq>
</url>
<?
echo "\n";
}
?>
</urlset>