📄 limit.php
字号:
<?include_once 'check.php';
if($action=Char_Cv('action','get')){
$id=Char_Cv('id','get');
if($id && is_numeric($id)){
unlink('../eqmkdata/tmpdata/limit/'.Getid($id,7).'.eqmk');
}
}
$tplpath="../eqmkdata/tmpdata/limit";
$dh=opendir($tplpath);
$client=array();
while ($file=readdir($dh)) {
if($file!="." && $file!="..") {
if(!is_dir($tplpath.'/'.$file)) {
$client[]=current(explode(".",$file));
}
}
}
closedir($dh);
?>
<html>
<title>访客屏蔽列表</title>
<META http-equiv=Content-Type content=text/html; charset=gb2312>
<link rel="stylesheet" type="text/css" href="images/style.css">
<body LEFTMARGIN="0" TOPMARGIN="2" scroll="no" oncontextmenu=self.event.returnValue=false onselectstart="return false">
<table border="0" cellspacing="1" align="center" width="99%" bgcolor="#c0c0c0">
<tr bgcolor="#f7f7f7">
<th width="20%">访客编号</th>
<th width="25%">IP地址</th>
<th width="40%">地理位置</th>
<th width="15%">操作</th>
</tr>
<?foreach($client as $v){
$o=explode('|',readover("../../eqmkdata/tmpdata/clients/$v.eqmk"));
?>
<tr bgcolor="#ffffff">
<td><?=$v?></td>
<td><?=$o[9]?></td>
<td><?=$o[10]?></td>
<td><a href="?action=del&id=<?=intval($v)?>">解除</a></td>
</tr>
<?}?>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -