LoadInBq.php 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  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,"bq");
  20. $enews=$_POST['enews'];
  21. $url="<a href=ListBq.php".$ecms_hashur['whehref'].">管理标签</a>&nbsp;>&nbsp;<a href=LoadInBq.php".$ecms_hashur['whehref'].">导入标签</a>";
  22. if($enews)
  23. {
  24. hCheckEcmsRHash();
  25. }
  26. if($enews=="LoadInBq")
  27. {
  28. include('../../class/tempfun.php');
  29. $file=$_FILES['file']['tmp_name'];
  30. $file_name=$_FILES['file']['name'];
  31. $file_type=$_FILES['file']['type'];
  32. $file_size=$_FILES['file']['size'];
  33. $r=LoadInBq($_POST,$file,$file_name,$file_type,$file_size,$logininid,$loginin);
  34. }
  35. else
  36. {
  37. //类别
  38. $cstr="";
  39. $csql=$empire->query("select classid,classname from {$dbtbpre}enewsbqclass order by classid");
  40. while($cr=$empire->fetch($csql))
  41. {
  42. $cstr.="<option value='".$cr[classid]."'>".$cr[classname]."</option>";
  43. }
  44. }
  45. db_close();
  46. $empire=null;
  47. ?>
  48. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  49. <html>
  50. <head>
  51. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  52. <title>导入标签</title>
  53. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  54. </head>
  55. <body>
  56. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  57. <tr>
  58. <td height="25">位置:<?=$url?></td>
  59. </tr>
  60. </table>
  61. <?
  62. if($enews=="LoadInBq")
  63. {
  64. ?>
  65. <form name="form2" method="post" action="">
  66. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  67. <tr class="header">
  68. <td height="25"><div align="center">导入标签完毕</div></td>
  69. </tr>
  70. <tr bgcolor="#FFFFFF">
  71. <td height="25"><table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  72. <tr>
  73. <td width="34%"><div align="right">导入标签名称:</div></td>
  74. <td width="66%" height="27"><b><? echo $r[0]."&nbsp;(".$r[3].")";?></b></td>
  75. </tr>
  76. <tr>
  77. <td height="27" colspan="2"><div align="center">标签函数内容:</div></td>
  78. </tr>
  79. <tr>
  80. <td height="27" colspan="2"> <div align="right"></div>
  81. <div align="center">
  82. <textarea name="funvalue" cols="86" rows="16" id="funvalue"><?=ehtmlspecialchars($r[5])?></textarea>
  83. </div></td>
  84. </tr>
  85. </table></td>
  86. </tr>
  87. <tr bgcolor="#FFFFFF">
  88. <td height="25"><div align="center">说明:导入标签后,请把函数内容复制到e/class/userfun.php文件</div></td>
  89. </tr>
  90. </table>
  91. </form>
  92. <?
  93. }
  94. else
  95. {
  96. ?>
  97. <form action="LoadInBq.php" method="post" enctype="multipart/form-data" name="form1" onsubmit="return confirm('确认要导入?');">
  98. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  99. <?=$ecms_hashur['form']?>
  100. <tr class="header">
  101. <td height="25"><div align="center">导入标签
  102. <input name="enews" type="hidden" id="enews" value="LoadInBq">
  103. </div></td>
  104. </tr>
  105. <tr bgcolor="#FFFFFF">
  106. <td height="25"><table width="500" border="0" align="center" cellpadding="3" cellspacing="1">
  107. <tr>
  108. <td width="34%"><div align="right">标签所属分类:</div></td>
  109. <td width="66%" height="27"><select name="classid" id="classid">
  110. <option value="0">不隶属于任何分类</option>
  111. <?=$cstr?>
  112. </select></td>
  113. </tr>
  114. <tr>
  115. <td height="27"> <div align="right">导入标签文件:</div></td>
  116. <td height="27"><input type="file" name="file">
  117. (*.bq) </td>
  118. </tr>
  119. </table></td>
  120. </tr>
  121. <tr bgcolor="#FFFFFF">
  122. <td height="25"><div align="center">
  123. <input type="submit" name="Submit" value="马上导入">
  124. &nbsp;&nbsp;
  125. <input type="reset" name="Submit2" value="重置">
  126. </div></td>
  127. </tr>
  128. </table>
  129. </form>
  130. <?
  131. }
  132. ?>
  133. </body>
  134. </html>