?? userlist.php
字號:
<?php // ----> by Justus
define('INSIDE', true);
$ugamela_root_path = './../';
include($ugamela_root_path . 'extension.inc');
include($ugamela_root_path . 'common.'.$phpEx);
$dpath = (!$user["dpath"]) ? DEFAULT_SKINPATH : $user["dpath"];
//checkeamos que el usuario este logueado y que tenga los permisos de admin
if(!check_user()){ header("Location: ./../login.php"); }
if($user['authlevel']!="3"){message("Puto de mierda","pero vo so loko?");}
$r = doquery("SELECT * FROM {{table}}","users");
$page .= "<center><br><br><br><br><br><table> \n";
$page .= "<tr> \n";
$page .= "<td><th><b><font color=\"orange\">Nr</b></th></td> \n";
$page .= "<td><th><b><font color=\"orange\">Gracz</b></th></td> \n";
$page .= "<td><th><b><font color=\"orange\">E-Mail</b></th></td> \n";
$page .= "<td><th><b><font color=\"orange\">IP</b></th></td> \n";
$page .= "<td><th><b><font color=\"orange\">Register Time</b></th></td> \n";
$page .= "<td><th><b><font color=\"orange\">Online Time</b></th></td> \n";
$page .= "</tr> \n";
while ($row = mysql_fetch_row($r)){
$page .= "<tr> \n";
$page .= "<td><th><font color=\"lime\">$row[0]</th></td> \n";
$page .= "<td><th><font color=\"lime\">$row[1]</th></td> \n";
$page .= "<td><th><font color=\"lime\">$row[3]</th></td> \n";
$page .= "<td><th><font color=\"lime\">$row[15]</th></td> \n";
$page .= "<td><th><font color=\"lime\">$row[16]</th></td> \n";
$page .= "<td><th><font color=\"lime\">$row[17]</th></td> \n";
$page .= "</tr> \n";
}
$page .= "</table> \n";
display($page,'Userlist');
?>
<link rel="stylesheet" type="text/css" media="screen" href="http://80.237.203.201/download/use/epicblue/formate.css" />
</style>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -