kodlar oldukça basit aslında
kodların çalışmış halini burada görebilirsiniz: http://www.gonulcelen.net/site_haritasi.html
bu kodları vb ye uyarlak için bazı yerleri editledim öncelikle
require_once("mainfile.php"); kısmını require_once('./global.php'); ile
nuke_xxx leride editledim ama sonuçta beceremedim

aslında forum_id topic_id gibi yerleri ne yapmam gerektiğini bilemedim
aşağıdaki kodlar nuke da çalışan orjinal kodlardır
aşağıdaki adres yazarın kodlar hakkındakı yazısıdır
http://www.gonulcelen.net/diger/site_map.html
yardımcı olursanız sevinirim...
<?php
require_once("mainfile.php");
header ("Content-Type: text/html; charset=iso-8859-9");
echo"<LINK REL=\"StyleSheet\" HREF=\"http://www.gonulcelen.net/themes/gonulcelen/style/style.css\" TYPE=\"text/css\">"
. "<div align=\"center\">"
. "<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"980\" height=\"543\">"
. " <tr>"
. " <td valign=\"top\" colspan=\"2\" height=\"74\">"
. " <p align=\"center\"><b><p align=\"center\"><a href=\"http://www.gonulcelen.net/index.php\" target=\"_blank\">
<img border=\"0\" src=\"http://www.gonulcelen.net/themes/gonulcelen/images/logo.gif\"></a></b></p></td>"
. " </tr>"
. " <tr>"
. " <td bgcolor=\"#F2FEE2\" valign=\"top\" rowspan=\"3\" width=\"448\">"
. " <p align=\"center\"><b><font size=\"4\">FORUM KONULARI</font></b><p align=\"left\">";
$sorgu="SELECT * FROM nuke_bbtopics ORDER BY topic_id DESC";
$xsorgu=mysql_query($sorgu);
while($liste=mysql_fetch_array($xsorgu)) {
echo" <a target=\"_blank\" href=\"ftopict-$liste[topic_id].html\">$liste[topic_title]</a><br>";
}
echo" </td>"
. " <tr>"
. " <td valign=\"top\" height=\"100%\" width=\"532\">"
. " <table border=\"0\" width=\"100%\" id=\"table1\" cellspacing=\"0\" cellpadding=\"0\">"
. " <tr>"
. " <td>";
echo"<table border=\"0\" width=\"100%\" id=\"table2\" cellspacing=\"0\" cellpadding=\"0\">"
. "<tr>"
. "<td><b>FORUM KATEGORÝLERÝ</b><p>";
$sorgu="SELECT * FROM nuke_bbforums ORDER BY forum_id DESC";
$xsorgu=mysql_query($sorgu);
while($liste=mysql_fetch_array($xsorgu)) {
echo" <a target=\"_blank\" href=\"forum-$liste[forum_id].html\">$liste[forum_name]</a><br>";
}
echo" </td>"
. "<td><b>HABER KAT.</b><p>";
$sorgu="SELECT * FROM nuke_topics ORDER BY topicid DESC";
$xsorgu=mysql_query($sorgu);
while($liste=mysql_fetch_array($xsorgu)) {
echo" <a target=\"_blank\" href=\"topics.html\">$liste[topicname]</a><br>";
}
echo" </td>"
. "<td><b>ÝÇERÝK KAT.</b><p>";
$sorgu="SELECT * FROM nuke_pages_categories ORDER BY cid DESC";
$xsorgu=mysql_query($sorgu);
while($liste=mysql_fetch_array($xsorgu)) {
echo" <a target=\"_blank\" href=\"content-cat-$liste[cid].html\">$liste[title]</a><br>";
}
echo" </td>"
. "</tr>"
. "</table>";
echo" </td></tr>"
. " <tr>"
. " <td>"
. " <p align=\"center\"><b>HABERLER</b></p><p align=\"left\">";
$sorgu="SELECT * FROM nuke_stories ORDER BY sid DESC";
$xsorgu=mysql_query($sorgu);
while($liste=mysql_fetch_array($xsorgu)) {
echo" <a target=\"_blank\" href=\"article-$liste[sid]-thread-0-0.html\">$liste[title]</a><br>";
}
echo" </td></tr>"
. " <tr>"
. " <td>"
. " <p align=\"center\"><br><br><b>ÝÇERÝKLER</b></p>";
$sorgu="SELECT * FROM nuke_pages ORDER BY pid DESC";
$xsorgu=mysql_query($sorgu);
while($liste=mysql_fetch_array($xsorgu)) {
echo" <a target=\"_blank\" href=\"content-$liste[sid].html\">$liste[title]</a><br>";
}
echo" </td>"
. " </tr>"
. " </table>";
echo"<table border=\"0\" width=\"100%\" id=\"table2\" cellspacing=\"0\" cellpadding=\"0\">"
. "<tr>"
. "<td><b>ÜYELERÝMÝZ 1-750</b><p>";
$sorgu="SELECT * FROM nuke_users ORDER BY user_id DESC LIMIT 0,750";
$xsorgu=mysql_query($sorgu);
while($liste=mysql_fetch_array($xsorgu)) {
echo" <a target=\"_blank\" href=\"forum-userprofile-$liste[user_id].html\">$liste[username]</a><br>";
}
echo" </td>"
. "<td><b>ÜYELERÝMÝZ 750</b><p>";
$sorgu="SELECT * FROM nuke_users ORDER BY user_id DESC LIMIT 750,2250";
$xsorgu=mysql_query($sorgu);
while($liste=mysql_fetch_array($xsorgu)) {
echo" <a target=\"_blank\" href=\"forum-userprofile-$liste[user_id].html\">$liste[username]</a><br>";
}
echo" </td>"
. "<td><b>ÜYELERÝMÝZ 2250</b><p>";
$sorgu="SELECT * FROM nuke_users ORDER BY user_id DESC LIMIT 2250,3500";
$xsorgu=mysql_query($sorgu);
while($liste=mysql_fetch_array($xsorgu)) {
echo" <a target=\"_blank\" href=\"forum-userprofile-$liste[user_id].html\">$liste[username]</a><br>";
}
echo" </td>"
. "<td><b>ÜYELERÝMÝZ 3500</b><p>";
$sorgu="SELECT * FROM nuke_users ORDER BY user_id DESC LIMIT 3500,10000";
$xsorgu=mysql_query($sorgu);
while($liste=mysql_fetch_array($xsorgu)) {
echo" <a target=\"_blank\" href=\"forum-userprofile-$liste[user_id].html\">$liste[username]</a><br>";
}
echo" </td>"
. "</tr>"
. "</table>"
. " </td>"
. " </tr>"
. "</table>"
. "</div>"
. "<a href=\"http://turkish-77402697120.spampoison.com\" target=\"_blank\"><img src=\"http://pics3.inxhost.com/images/sticker.gif\" border=\"0\" width=\"80\" height=\"15\"/></a><br><br><center>Site Map Coder <a href=\"http://www.nurullah.net\" target=\"_blank\">Nurullah Okatan</a></center>";
?>