📄 changepath.php
字号:
<?
require("../../class/connect.php");
include("../../class/config.php");
include("../../class/db_sql.php");
include("../../class/functions.php");
include("class/functions.php");
$link=db_connect();
$empire=new mysqlquery();
//验证用户
$logininid=$_COOKIE['enewsloginuserid'];
$loginin=$_COOKIE['enewsloginusername'];
$loginrnd=$_COOKIE['enewsloginrnd'];
$loginlevel=$_COOKIE['enewsloginlevel'];
is_login($logininid,$loginin,$loginrnd);
//验证权限
CheckLevel($logininid,$loginin,$classid,"dbdata");
$bakpath=$public_r['bakdbpath'];
$hand=@opendir($bakpath);
?>
<!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="images/css.css" rel="stylesheet" type="text/css">
<script>
function ChangePath(pathname)
{
opener.document.form1.mypath.value=pathname;
window.close();
}
</script>
</head>
<body>
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
<tr>
<td>位置:<a href="ChangePath.php">管理备份目录</a></td>
</tr>
</table>
<br>
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
<tr bgcolor="#698CC3">
<td width="45%" height="25">
<div align="center"><strong><font color="#FFFFFF">备份目录名(点击选择)</font></strong></div></td>
<td width="20%" height="25">
<div align="center"><strong><font color="#FFFFFF">查看说明文件</font></strong></div></td>
<td width="35%">
<div align="center"><font color="#FFFFFF">操作</font></div></td>
</tr>
<?
while($file=@readdir($hand))
{
if ($file!="."&&$file!=".."&&is_dir($bakpath."/".$file))
{
?>
<tr bgcolor="#DBEAF5">
<td height="25"> <div align="left"><img src="images/dir.gif" width="19" height="15">
<a href=#ebak onclick="javascript:ChangePath('<?=$file?>');" title="<?=$file?>">
<?=$file?>
</a> </div></td>
<td height="25"> <div align="center"> [<a href="<? echo $bakpath."/".$file."/readme.txt"?>" target=_blank>查看备份说明</a>]</div></td>
<td><div align="center">[<a href="#ebak" onclick="window.open('phome.php?phome=DoZip&p=<?=$file?>','','width=350,height=160');">打包并下载</a>] [<a href="phome.php?phome=DelBakpath&path=<?=$file?>" onclick="return confirm('确认要删除?');">删除目录</a>]</div></td>
</tr>
<?
}
}
?>
<tr>
<td height="25" colspan="3"> </td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -