ERKIN7717
XuSha,
Kod · PHP27 qator
define('_IN_JOHNCMS', 1);

require_once ('incfiles/core.php');

header('content-type: application/rss+xml');

echo '<?xml version="1.0" encoding="UTF-8"?><urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">';

$req = mysql_query('SELECT * FROM `forum` ORDER BY `id` DESC');

if (mysql_num_rows($req)) {

    while ($res = mysql_fetch_assoc($req)) {

?>

<url><loc><?=$home?>/forum/index.php?id=<?=$res['id']?>/</loc>

<lastmod><?=date('Y-m-d',$res['time'])?>T<?=date('H:i:s',$res['time'])?>+00:00</lastmod>

<priority>0.9</priority></url>

<?

    }

}