TranMoreFile.php 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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. CheckLevel($logininid,$loginin,$classid,"file");
  20. $url="<a href=TranMoreFile.php".$ecms_hashur['whehref'].">批量上传附件</a>";
  21. $filenum=(int)$_GET['filenum'];
  22. if(empty($filenum))
  23. {$filenum=10;}
  24. $o="n".$filenum;
  25. $$o=" selected";
  26. db_close();
  27. $empire=null;
  28. ?>
  29. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  30. <html>
  31. <head>
  32. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  33. <title>上传附件</title>
  34. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  35. </head>
  36. <body>
  37. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  38. <tr>
  39. <td width="31%" height="25">位置:
  40. <?=$url?>
  41. </td>
  42. <td width="69%"><div align="right" class="emenubutton">
  43. </div></td>
  44. </tr>
  45. </table>
  46. <form action="../ecmsfile.php" method="post" enctype="multipart/form-data" name="form1">
  47. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  48. <?=$ecms_hashur['form']?>
  49. <tr class="header">
  50. <td height="25">批量上传附件</td>
  51. </tr>
  52. <tr>
  53. <td height="25" bgcolor="#FFFFFF">请选择要上传的附件个数: <select name="filenum" id="filenum" onchange=window.location='TranMoreFile.php?<?=$ecms_hashur['ehref']?>&filenum='+this.options[this.selectedIndex].value>
  54. <option value="1"<?=$n1?>>1</option>
  55. <option value="2"<?=$n2?>>2</option>
  56. <option value="3"<?=$n3?>>3</option>
  57. <option value="4"<?=$n4?>>4</option>
  58. <option value="5"<?=$n5?>>5</option>
  59. <option value="6"<?=$n6?>>6</option>
  60. <option value="7"<?=$n7?>>7</option>
  61. <option value="8"<?=$n8?>>8</option>
  62. <option value="9"<?=$n9?>>9</option>
  63. <option value="10"<?=$n10?>>10</option>
  64. <option value="11"<?=$n11?>>11</option>
  65. <option value="12"<?=$n12?>>12</option>
  66. <option value="13"<?=$n13?>>13</option>
  67. <option value="14"<?=$n14?>>14</option>
  68. <option value="15"<?=$n15?>>15</option>
  69. <option value="16"<?=$n16?>>16</option>
  70. <option value="17"<?=$n17?>>17</option>
  71. <option value="18"<?=$n18?>>18</option>
  72. <option value="19"<?=$n19?>>19</option>
  73. <option value="20"<?=$n20?>>20</option>
  74. </select>
  75. ,上传附件类别:
  76. <select name="type">
  77. <option value="1">图片</option>
  78. <option value="2">Flash文件</option>
  79. <option value="3">多媒体文件</option>
  80. <option value="0">其他附件</option>
  81. </select></td>
  82. </tr>
  83. <tr>
  84. <td height="25" bgcolor="#FFFFFF"> <table width="100%" border="0" cellpadding="3" cellspacing="1">
  85. <tr bgcolor="#DBEAF5">
  86. <td width="35%">文件</td>
  87. <td width="65%">编号(便于管理附件)</td>
  88. </tr>
  89. <?
  90. for($i=0;$i<$filenum;$i++)
  91. {
  92. ?>
  93. <tr>
  94. <td height="25"> <input name="file[]" type="file" id="file[]"> </td>
  95. <td><input name="no[]" type="text" id="no[]"></td>
  96. </tr>
  97. <?
  98. }
  99. ?>
  100. </table></td>
  101. </tr>
  102. <tr>
  103. <td height="25" bgcolor="#FFFFFF"> <input type="submit" name="Submit" value="开始上传">
  104. <input name="enews" type="hidden" id="enews" value="TranMoreFile"></td>
  105. </tr>
  106. </table>
  107. </form>
  108. </body>
  109. </html>