File: /home/httpd/html/porn.tw/public_html/sitemapMain.php
<?
include('mb.php');
header('Content-type: text/xml; charset=UTF-8');
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/0.9/sitemap.xsd">
';
?>
<url>
<loc><? echo $basehttp; ?>/most-recent/</loc>
<priority>1.0</priority>
<changefreq>hourly</changefreq>
<lastmod><? echo date('c'); ?></lastmod>
</url>
<url>
<loc><? echo $basehttp; ?>/top-rated/</loc>
<priority>1.0</priority>
<changefreq>hourly</changefreq>
<lastmod><? echo date('c'); ?></lastmod>
</url>
<url>
<loc><? echo $basehttp; ?>/most-viewed/</loc>
<priority>1.0</priority>
<changefreq>hourly</changefreq>
<lastmod><? echo date('c'); ?></lastmod>
</url>
<url>
<loc><? echo $basehttp; ?>/longest/</loc>
<priority>1.0</priority>
<changefreq>hourly</changefreq>
<lastmod><? echo date('c'); ?></lastmod>
</url>
<url>
<loc><? echo $basehttp; ?>/channels/</loc>
<priority>1.0</priority>
<changefreq>hourly</changefreq>
<lastmod><? echo date('c'); ?></lastmod>
</url>
<? $result = dbQuery("SELECT `record_num`, `name` FROM `niches` ORDER BY `name`"); ?>
<? foreach ($result as $row) { ?>
<url>
<loc><?php echo generateUrl('channel', $row['name'], $row['record_num']); ?></loc>
<priority>0.9</priority>
<changefreq>daily</changefreq>
<lastmod><? echo date('c'); ?></lastmod>
</url>
<? } ?>
</urlset>