📄 list.php
字号:
<?
include "./inc/attest.inc.php";
/*
===============================================================
= 侠域(Ver 0.9.0) 使用规则版本(Ver 0.2) =
此程序所有版权归原作者所有. 此版权信息不得删除.
= Copyright (C) 2001-2002 WFoxd =
= =
=版权所有(C)2002,作者 田野(风狐) 未经许可 不得使用 传播 =
=E-MAIL:wfoxd@cnnetgame.com =
=http://www.cnnetgame.com =
===============================================================
*/
include "./inc/config.inc.php";
include "./inc/style.inc.php";
/*
================================
=武林排行榜 (Ver 0.2.1)
=公元 2001年11月30日
================================
*/
include "./include/area_now_ct.inc.php";
$way = array("list.php","xy_city.php");
area_now($way,$user_id);
include "./include/location.inc.php";
up_location("江湖排行榜","list.php","$user_id");
?>
<?
//经验
if($qiang == 1){
include "./inc/db.inc.php";
$people_info = mysql_query("SELECT id FROM renwu_member ORDER BY exp DESC LIMIT 0,10");
$num = mysql_num_rows($people_info);
include "./include/list.inc.php";
}
?>
<?
if($xia == 1){
include "./inc/db.inc.php";
$people_info = mysql_query("SELECT id FROM renwu_member WHERE pos > 0 ORDER BY pos DESC LIMIT 0,10");
$num = mysql_num_rows($people_info);
include "./include/list.inc.php";
}
?>
<?
if($eren == 1){
include "./inc/db.inc.php";
$people_info = mysql_query("SELECT id FROM renwu_member WHERE pos < 0 ORDER BY pos ASC LIMIT 0,10");
$num = mysql_num_rows($people_info);
include "./include/list.inc.php";
}
?>
<?
if($mon == 1){
include "./inc/db.inc.php";
$people_info = mysql_query("SELECT id FROM renwu_member ORDER BY mon DESC LIMIT 0,10");
$num = mysql_num_rows($people_info);
include "./include/list.inc.php";
}
?>
<?
if($zorg == 1){
include "./inc/db.inc.php";
$org_info = @mysql_query("SELECT orgname FROM org WHERE orgpos > 0 ORDER BY orgpos DESC LIMIT 0,10");
$num = @mysql_num_rows($org_info);
echo "<table border=2 cellpadding=0 cellspacing=0 bordercolor=#111111 width=100%>\n";
for($i=0;$i<$num;$i++){
$org_name = mysql_result($org_info,$i,"orgname");
$j = $i+1;
echo "<tr>\n";
echo "<td width=5% bgcolor=#CCFFCC><font size=5 color=#FF9999>".$j."</font></td>\n";
echo "<td width=25% align=center>$org_name</td>\n";
echo "</tr>\n";
}
echo "</table>\n";
echo "<input type=submit value='返 回' onclick=\"location.href='list.php'\" style=\"font-family: 宋体; border-style: ridge; border-width: 0; background-color: #CCFF99; color:#666633\">\n";
mysql_close();
exit();
}
if($xorg == 1){
include "./inc/db.inc.php";
$org_info = @mysql_query("SELECT orgname FROM org WHERE orgpos < 0 ORDER BY orgpos ASC LIMIT 0,10");
$num = @mysql_num_rows($org_info);
echo "<table border=2 cellpadding=0 cellspacing=0 bordercolor=#111111 width=100%>\n";
for($i=0;$i<$num;$i++){
$org_name = mysql_result($org_info,$i,"orgname");
$j = $i+1;
echo "<tr>\n";
echo "<td width=5% bgcolor=#CCFFCC><font size=5 color=#FF9999>".$j."</font></td>\n";
echo "<td width=25% align=center>$org_name</td>\n";
echo "</tr>\n";
}
echo "</table>\n";
echo "<input type=submit value='返 回' onclick=\"location.href='list.php'\" style=\"font-family: 宋体; border-style: ridge; border-width: 0; background-color: #CCFF99; color:#666633\">\n";
mysql_close();
exit();
}
?>
<h3 align=center>武林排行榜</h3>
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" bgcolor="#99CCFF">
<tr>
<td width="25%"><a href=list.php?qiang=1>◎十大高手</a></td>
<td width="25%"><a href=list.php?xia=1>◎十大侠客</a></td>
<td width="25%"><a href=list.php?eren=1>◎十大恶人</a></td>
<td width="25%"><a href=list.php?mon=1>◎十大富翁</a></td>
</tr>
<tr>
<td width="25%"><a href=list.php?zorg=1>◎十大正派帮会</a></td>
<td width="25%"><a href=list.php?xorg=1>◎十大邪派帮会</a></td>
<td width="25%"></td>
<td width="25%"></td>
</tr>
</table>
<?
include "./include/back_xy.inc.php";
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -