MoveClassNews.php 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. //验证用户
  9. $lur=is_login();
  10. $logininid=$lur['userid'];
  11. $loginin=$lur['username'];
  12. $loginrnd=$lur['rnd'];
  13. $loginlevel=$lur['groupid'];
  14. $loginadminstyleid=$lur['adminstyleid'];
  15. //ehash
  16. $ecms_hashur=hReturnEcmsHashStrAll();
  17. //验证权限
  18. CheckLevel($logininid,$loginin,$classid,"movenews");
  19. $enews=ehtmlspecialchars($_GET['enews']);
  20. $url="<a href=MoveClassNews.php".$ecms_hashur['whehref'].">批量转移信息</a>";
  21. //--------------------操作的栏目
  22. $fcfile="../data/fc/ListEnews.php";
  23. $do_class="<script src=../data/fc/cmsclass.js></script>";
  24. if(!file_exists($fcfile))
  25. {$do_class=ShowClass_AddClass("","n",0,"|-",0,0);}
  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 height="25">位置:<?=$url?></td>
  40. </tr>
  41. </table>
  42. <form name="form1" method="post" action="ecmsinfo.php" onsubmit="return confirm('确认要执行此操作?');">
  43. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  44. <?=$ecms_hashur['form']?>
  45. <tr class="header">
  46. <td height="25"><div align="center">批量转移栏目信息</div></td>
  47. </tr>
  48. <tr>
  49. <td height="25" bgcolor="#FFFFFF"><div align="center">将
  50. <select name="add[classid]" id="add[classid]">
  51. <option value=0>请选择原信息栏目</option><?=$do_class?>
  52. </select>
  53. 的信息转移到
  54. <select name="add[toclassid]" id="add[toclassid]">
  55. <option value=0>请选择目标信息栏目</option><?=$do_class?>
  56. </select>
  57. 栏目
  58. <input type="submit" name="Submit" value="转移">
  59. <input name="enews" type="hidden" id="enews" value="MoveClassNews">
  60. </div></td>
  61. </tr>
  62. </table>
  63. </form>
  64. </body>
  65. </html>