📄 changepath.php
字号:
<?php
require("../../class/connect.php");
include("../../class/config.php");
include("../../class/db_sql.php");
include("../../class/functions.php");
$link=db_connect();
$empire=new mysqlquery();
//验证用户
$logininid=getcvar('loginuserid');
$loginin=getcvar('loginusername');
$loginrnd=getcvar('loginrnd');
$loginlevel=getcvar('loginlevel');
$editor=1;
is_login($logininid,$loginin,$loginrnd);
//参数
$returnform=$_GET['returnform'];
//基目录
$basepath="../../..";
$filepath=$_GET['filepath'];
if(strstr($filepath,".."))
{
$filepath="";
}
$openpath=$basepath."/".$filepath;
$hand=@opendir($openpath);
db_close();
$empire=null;
//风格
$loginadminstyleid=(int)getcvar('loginadminstyleid');
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>选择目录</title>
<link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
</head>
<body>
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
<tr>
<td width="56%">位置:<a href="ChangePath.php">选择目录</a></td>
<td width="44%"><div align="right"> </div></td>
</tr>
</table>
<form name="chpath" method="post" action="../enews.php">
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
<tr class="header">
<td><div align="center">选择</div></td>
<td height="25">文件名 (当前目录:<strong>/
<?=$filepath?>
</strong>) [<a href="#ecms" onclick="javascript:history.go(-1);">返回</a>]</td>
</tr>
<?php
while($file=@readdir($hand))
{
if(empty($filepath))
{
$truefile=$file;
}
else
{
$truefile=$filepath."/".$file;
}
if($file=="."||$file=="..")
{
continue;
}
//目录
if(is_dir($openpath."/".$file))
{
$filelink="ChangePath.php?filepath=".$truefile."&returnform=".$returnform;
$filename=$file;
$img="folder.gif";
$checkbox="";
$target="";
}
//文件
else
{
continue;
}
?>
<tr>
<td width="12%"><div align="center">
<input name="path" type="checkbox" id="path" value="../../<?=$truefile?>/" onclick="<?=$returnform?>=this.value;window.close();">
</div></td>
<td width="88%" height="25"><img src="../../data/images/dir/<?=$img?>" width="23" height="22"><a href="<?=$filelink?>" title="查看下级目录">
<?=$filename?>
</a></td>
</tr>
<?
}
@closedir($hand);
?>
</table>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -