LoadOutBq.php 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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. $mess="<script>alert('请选择要导出的标签');window.close();</script>";
  21. $bqid=(int)$_GET['bqid'];
  22. if(empty($bqid))
  23. {
  24. echo $mess;
  25. exit();
  26. }
  27. $r=$empire->fetch1("select bqid,bqname,bq from {$dbtbpre}enewsbq where bqid=$bqid");
  28. if(empty($r['bqid']))
  29. {
  30. echo $mess;
  31. exit();
  32. }
  33. $url="&nbsp;导出标签:".$r['bqname'];
  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="98%%" border="0" align="center" cellpadding="3" cellspacing="1">
  46. <tr>
  47. <td height="25">位置:<?=$url?></td>
  48. </tr>
  49. </table>
  50. <form name="form1" method="post" action="../ecmstemp.php" onsubmit="return confirm('确认要导出?');">
  51. <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  52. <?=$ecms_hashur['form']?>
  53. <tr class="header">
  54. <td height="25"><div align="center">导出标签
  55. <input name="enews" type="hidden" id="enews" value="LoadOutBq">
  56. <input name="bqid" type="hidden" id="bqid" value="<?=$bqid?>">
  57. </div></td>
  58. </tr>
  59. <tr bgcolor="#FFFFFF">
  60. <td height="25"><table width="100%" border="0" cellspacing="1" cellpadding="3">
  61. <tr>
  62. <td width="37%"><div align="right">标签名称:</div></td>
  63. <td width="63%" height="27"><b><? echo $r[bqname]."&nbsp;(".$r[bq].")";?></b></td>
  64. </tr>
  65. <tr>
  66. <td height="27" colspan="2">
  67. <div align="center">标签函数内容(e/class/userfun.php):</div></td>
  68. </tr>
  69. <tr>
  70. <td colspan="2"><div align="center">
  71. <textarea name="funvalue" cols="86" rows="16" id="funvalue"></textarea>
  72. </div></td>
  73. </tr>
  74. </table></td>
  75. </tr>
  76. <tr bgcolor="#FFFFFF">
  77. <td height="25"><div align="center">
  78. <input type="submit" name="Submit" value="马上导出">&nbsp;&nbsp;
  79. <input type="reset" name="Submit2" value="重置">
  80. </div></td>
  81. </tr>
  82. </table>
  83. </form>
  84. </body>
  85. </html>