LoadInCj.php 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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,"loadcj");
  20. $from=(int)$_GET['from'];
  21. if($from)
  22. {
  23. $listclasslink="ListPageInfoClass.php";
  24. }
  25. else
  26. {
  27. $listclasslink="ListInfoClass.php";
  28. }
  29. $url="<a href=../".$listclasslink.$ecms_hashur['whehref'].">管理采集</a>&nbsp;>&nbsp;导入采集规则";
  30. //--------------------操作的栏目
  31. $fcfile="../../data/fc/ListEnews.php";
  32. $do_class="<script src=../../data/fc/cmsclass.js></script>";
  33. if(!file_exists($fcfile))
  34. {$do_class=ShowClass_AddClass("","n",0,"|-",0,0);}
  35. db_close();
  36. $empire=null;
  37. ?>
  38. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  39. <html>
  40. <head>
  41. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  42. <title>导入采集规则</title>
  43. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  44. </head>
  45. <body>
  46. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  47. <tr>
  48. <td height="25">位置:<?=$url?></td>
  49. </tr>
  50. </table>
  51. <form action="../ecmscj.php" method="post" enctype="multipart/form-data" name="form1" onsubmit="return confirm('确认要导入?');">
  52. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  53. <tr class="header">
  54. <td height="25"><div align="center">导入采集规则
  55. <input name="enews" type="hidden" id="enews" value="LoadInCj">
  56. <?=$ecms_hashur['form']?>
  57. </div></td>
  58. </tr>
  59. <tr bgcolor="#FFFFFF">
  60. <td height="25"><table width="650" border="0" align="center" cellpadding="3" cellspacing="1">
  61. <tr>
  62. <td width="29%"><div align="right">选择采集入库的栏目:</div></td>
  63. <td width="71%" height="27"><select name="classid" id="classid">
  64. <option value='0'>选择栏目</option>
  65. <?=$do_class?>
  66. </select>
  67. <font color="#666666">(要选择终极栏目)</font></td>
  68. </tr>
  69. <tr>
  70. <td height="27"> <div align="right">导入采集规则文件:</div></td>
  71. <td height="27"><input type="file" name="file">
  72. <font color="#666666">(*.cj)</font> </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="马上导入">
  79. &nbsp;&nbsp;
  80. <input type="reset" name="Submit2" value="重置">
  81. <input type="hidden" name="from" value="<?=$from?>">
  82. </div></td>
  83. </tr>
  84. </table>
  85. </form>
  86. </body>
  87. </html>