ChangePath.php 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. <?php
  2. define('EmpireCMSAdmin','1');
  3. require("../../class/connect.php");
  4. require("../../class/db_sql.php");
  5. require("../../class/functions.php");
  6. $link=db_connect();
  7. $empire=new mysqlquery();
  8. $editor=1;
  9. //验证用户
  10. $lur=is_login();
  11. $logininid=$lur['userid'];
  12. $loginin=$lur['username'];
  13. $loginrnd=$lur['rnd'];
  14. $loginlevel=$lur['groupid'];
  15. $loginadminstyleid=$lur['adminstyleid'];
  16. //ehash
  17. $ecms_hashur=hReturnEcmsHashStrAll();
  18. //参数
  19. $returnform=RepPostVar($_GET['returnform']);
  20. //基目录
  21. $basepath="../../..";
  22. $filepath=RepPostStr($_GET['filepath'],1);
  23. if(strstr($filepath,".."))
  24. {
  25. $filepath="";
  26. }
  27. $filepath=eReturnCPath($filepath,'');
  28. $openpath=$basepath."/".$filepath;
  29. if(!file_exists($openpath))
  30. {
  31. $openpath=$basepath;
  32. }
  33. $hand=@opendir($openpath);
  34. db_close();
  35. $empire=null;
  36. ?>
  37. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  38. <html>
  39. <head>
  40. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  41. <title>选择目录</title>
  42. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  43. </head>
  44. <body>
  45. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  46. <tr>
  47. <td width="56%">位置:<a href="ChangePath.php<?=$ecms_hashur['whehref']?>">选择目录</a></td>
  48. <td width="44%"><div align="right"> </div></td>
  49. </tr>
  50. </table>
  51. <form name="chpath" method="post" action="../enews.php">
  52. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  53. <?=$ecms_hashur['eform']?>
  54. <tr class="header">
  55. <td><div align="center">选择</div></td>
  56. <td height="25">文件名 (当前目录:<strong>/
  57. <?=$filepath?>
  58. </strong>) &nbsp;&nbsp;&nbsp;[<a href="#ecms" onclick="javascript:history.go(-1);">返回</a>]</td>
  59. </tr>
  60. <?php
  61. while($file=@readdir($hand))
  62. {
  63. if(empty($filepath))
  64. {
  65. $truefile=$file;
  66. }
  67. else
  68. {
  69. $truefile=$filepath."/".$file;
  70. }
  71. if($file=="."||$file=="..")
  72. {
  73. continue;
  74. }
  75. //目录
  76. if(is_dir($openpath."/".$file))
  77. {
  78. $filelink="ChangePath.php?filepath=".$truefile."&returnform=".$returnform.$ecms_hashur['ehref'];
  79. $filename=$file;
  80. $img="folder.gif";
  81. $checkbox="";
  82. $target="";
  83. }
  84. //文件
  85. else
  86. {
  87. continue;
  88. }
  89. ?>
  90. <tr>
  91. <td width="12%"><div align="center">
  92. <input name="path" type="checkbox" id="path" value="../../<?=$truefile?>/" onclick="<?=$returnform?>=this.value;window.close();">
  93. </div></td>
  94. <td width="88%" height="25"><img src="../../data/images/dir/<?=$img?>" width="23" height="22"><a href="<?=$filelink?>" title="查看下级目录">
  95. <?=$filename?>
  96. </a></td>
  97. </tr>
  98. <?
  99. }
  100. @closedir($hand);
  101. ?>
  102. </table>
  103. </form>
  104. </body>
  105. </html>