ChangePlfaceFile.php 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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. $openpath="../../data/face";
  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="ChangePlfaceFile.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/data/face/</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. $filetype=GetFiletype($file);
  60. if(!strstr($ecms_config['sets']['tranpicturetype'],','.$filetype.','))
  61. {
  62. continue;
  63. }
  64. ?>
  65. <tr>
  66. <td width="88%" height="25"><a href="#ecms" onclick="<?=$returnform?>='<?=$truefile?>';window.close();" title="选择">
  67. <img src="../../data/face/<?=$truefile?>" border=0>&nbsp;<?=$truefile?>
  68. </a></td>
  69. </tr>
  70. <?
  71. }
  72. @closedir($hand);
  73. ?>
  74. </table>
  75. </form>
  76. </body>
  77. </html>