ChangePlayerFile.php 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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=ehtmlspecialchars($_GET['returnform']);
  20. //基目录
  21. $openpath="../../DownSys/play";
  22. $hand=@opendir($openpath);
  23. db_close();
  24. $empire=null;
  25. ?>
  26. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  27. <html>
  28. <head>
  29. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  30. <title>选择文件</title>
  31. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  32. </head>
  33. <body>
  34. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  35. <tr>
  36. <td width="56%">位置:<a href="ChangePlayerFile.php<?=$ecms_hashur['whehref']?>">选择文件</a></td>
  37. <td width="44%"><div align="right"> </div></td>
  38. </tr>
  39. </table>
  40. <form name="chfile" method="post" action="../enews.php">
  41. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  42. <?=$ecms_hashur['eform']?>
  43. <tr class="header">
  44. <td height="25">文件名 (当前目录:<strong>/e/DownSys/play/</strong>)</td>
  45. </tr>
  46. <?php
  47. while($file=@readdir($hand))
  48. {
  49. $truefile=$file;
  50. if($file=="."||$file=="..")
  51. {
  52. continue;
  53. }
  54. //目录
  55. if(is_dir($openpath."/".$file))
  56. {
  57. continue;
  58. }
  59. //文件
  60. else
  61. {
  62. $img="txt_icon.gif";
  63. $target="";
  64. }
  65. ?>
  66. <tr>
  67. <td width="88%" height="25"><img src="../../data/images/dir/<?=$img?>" width="23" height="22"><a href="#ecms" onclick="<?=$returnform?>='<?=$truefile?>';window.close();" title="选择">
  68. <?=$truefile?>
  69. </a></td>
  70. </tr>
  71. <?
  72. }
  73. @closedir($hand);
  74. ?>
  75. </table>
  76. </form>
  77. </body>
  78. </html>