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> <priority>0.9</priority></url> <? } }
