NotCj.php 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  1. <?php
  2. define('EmpireCMSAdmin','1');
  3. require("../../class/connect.php");
  4. require("../../class/db_sql.php");
  5. require("../../class/functions.php");
  6. require "../".LoadLang("pub/fun.php");
  7. $link=db_connect();
  8. $empire=new mysqlquery();
  9. $editor=1;
  10. //验证用户
  11. $lur=is_login();
  12. $logininid=$lur['userid'];
  13. $loginin=$lur['username'];
  14. $loginrnd=$lur['rnd'];
  15. $loginlevel=$lur['groupid'];
  16. $loginadminstyleid=$lur['adminstyleid'];
  17. //ehash
  18. $ecms_hashur=hReturnEcmsHashStrAll();
  19. //验证权限
  20. CheckLevel($logininid,$loginin,$classid,"notcj");
  21. //增加采集随机字符
  22. function AddNotcj($add,$userid,$username){
  23. global $empire,$dbtbpre;
  24. //验证权限
  25. CheckLevel($userid,$username,$classid,"notcj");
  26. if(empty($add[word]))
  27. {
  28. printerror("EmptyNotcjWord","history.go(-1)");
  29. }
  30. $word=RepPhpAspJspcode($add[word]);
  31. $sql=$empire->query("insert into {$dbtbpre}enewsnotcj(word) values('".eaddslashes($word)."');");
  32. $id=$empire->lastid();
  33. GetNotcj();
  34. if($sql)
  35. {
  36. //操作日志
  37. insert_dolog("id=$id");
  38. printerror("AddNotcjSuccess","NotCj.php".hReturnEcmsHashStrHref2(1));
  39. }
  40. else
  41. {
  42. printerror("DbError","history.go(-1)");
  43. }
  44. }
  45. //修改采集随机字符
  46. function EditNotcj($add,$userid,$username){
  47. global $empire,$dbtbpre;
  48. //验证权限
  49. CheckLevel($userid,$username,$classid,"notcj");
  50. $id=(int)$add['id'];
  51. if(empty($add[word])||!$id)
  52. {
  53. printerror("EmptyNotcjWord","history.go(-1)");
  54. }
  55. $word=RepPhpAspJspcode($add[word]);
  56. $sql=$empire->query("update {$dbtbpre}enewsnotcj set word='".eaddslashes($word)."' where id='$id'");
  57. GetNotcj();
  58. if($sql)
  59. {
  60. //操作日志
  61. insert_dolog("id=$id");
  62. printerror("EditNotcjSuccess","NotCj.php".hReturnEcmsHashStrHref2(1));
  63. }
  64. else
  65. {
  66. printerror("DbError","history.go(-1)");
  67. }
  68. }
  69. //删除采集随机字符
  70. function DelNotcj($id,$userid,$username){
  71. global $empire,$dbtbpre;
  72. //验证权限
  73. CheckLevel($userid,$username,$classid,"notcj");
  74. $id=(int)$id;
  75. if(!$id)
  76. {
  77. printerror("EmptyDelNotcjid","history.go(-1)");
  78. }
  79. $sql=$empire->query("delete from {$dbtbpre}enewsnotcj where id='$id'");
  80. GetNotcj();
  81. if($sql)
  82. {
  83. //操作日志
  84. insert_dolog("id=$id");
  85. printerror("DelNotcjSuccess","NotCj.php".hReturnEcmsHashStrHref2(1));
  86. }
  87. else
  88. {
  89. printerror("DbError","history.go(-1)");
  90. }
  91. }
  92. //生成随机字符缓存
  93. function GetNotcj(){
  94. global $empire,$dbtbpre;
  95. $file=ECMS_PATH."e/data/dbcache/notcj.php";
  96. $sql=$empire->query("select id,word from {$dbtbpre}enewsnotcj");
  97. $i=0;
  98. while($r=$empire->fetch($sql))
  99. {
  100. $i++;
  101. $str.="\$notcj_r[$i]='".addslashes($r[word])."';
  102. ";
  103. }
  104. $string="<?php
  105. \$notcj_r=array();
  106. ".$str."\$notcjnum=".$i.";
  107. ?>";
  108. WriteFiletext_n($file,$string);
  109. }
  110. $enews=$_POST['enews'];
  111. if(empty($enews))
  112. {$enews=$_GET['enews'];}
  113. if($enews)
  114. {
  115. hCheckEcmsRHash();
  116. }
  117. //增加随机字符
  118. if($enews=="AddNotcj")
  119. {
  120. AddNotcj($_POST,$logininid,$loginin);
  121. }
  122. //修改随机字符
  123. elseif($enews=="EditNotcj")
  124. {
  125. EditNotcj($_POST,$logininid,$loginin);
  126. }
  127. //删除随机字符
  128. elseif($enews=="DelNotcj")
  129. {
  130. $id=$_GET['id'];
  131. DelNotcj($id,$logininid,$loginin);
  132. }
  133. else
  134. {}
  135. $search=$ecms_hashur['ehref'];
  136. $start=0;
  137. $page=(int)$_GET['page'];
  138. $page=RepPIntvar($page);
  139. $line=15;//每行显示
  140. $page_line=15;
  141. $offset=$page*$line;
  142. $totalquery="select count(*) as total from {$dbtbpre}enewsnotcj";
  143. $num=$empire->gettotal($totalquery);//取得总条数
  144. $query="select id,word from {$dbtbpre}enewsnotcj";
  145. $query.=" order by id desc limit $offset,$line";
  146. $sql=$empire->query($query);
  147. $returnpage=page2($num,$line,$page_line,$start,$page,$search);
  148. ?>
  149. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  150. <html>
  151. <head>
  152. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  153. <title>管理防采集随机字符</title>
  154. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  155. </head>
  156. <body>
  157. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  158. <tr>
  159. <td>位置:防采集管理 &gt; <a href="NotCj.php<?=$ecms_hashur['whehref']?>">管理防采集随机字符</a></td>
  160. </tr>
  161. </table>
  162. <form name="form1" method="post" action="NotCj.php">
  163. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  164. <?=$ecms_hashur['form']?>
  165. <tr class="header">
  166. <td height="25">增加防采集随机字符:
  167. <input type=hidden name=enews value=AddNotcj>
  168. </td>
  169. </tr>
  170. <tr>
  171. <td height="25" bgcolor="#FFFFFF">
  172. <textarea name="word" cols="65" rows="8" id="word"></textarea>
  173. </td>
  174. </tr>
  175. <tr>
  176. <td height="25" bgcolor="#FFFFFF"><input type="submit" name="Submit" value="增加">
  177. <input type="reset" name="Submit2" value="重置"></td>
  178. </tr>
  179. </table>
  180. </form>
  181. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  182. <tr class="header">
  183. <td width="7%"><div align="center">ID</div></td>
  184. <td width="75%" height="25">防采集随机字符</td>
  185. <td width="18%" height="25"><div align="center">操作</div></td>
  186. </tr>
  187. <?
  188. while($r=$empire->fetch($sql))
  189. {
  190. $word=ehtmlspecialchars($r[word]);
  191. ?>
  192. <form name=form2 method=post action=NotCj.php>
  193. <?=$ecms_hashur['form']?>
  194. <input type=hidden name=enews value=EditNotcj>
  195. <input type=hidden name=id value=<?=$r[id]?>>
  196. <tr bgcolor="#FFFFFF" onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
  197. <td><div align="center"><?=$r[id]?></div></td>
  198. <td height="25"><textarea name="word" cols="65" rows="8" id="word"><?=$word?></textarea>
  199. </td>
  200. <td height="25"><div align="center">
  201. <input type="submit" name="Submit3" value="修改">
  202. &nbsp;
  203. <input type="button" name="Submit4" value="删除" onclick="self.location.href='NotCj.php?enews=DelNotcj&id=<?=$r[id]?><?=$ecms_hashur['href']?>';">
  204. </div></td>
  205. </tr>
  206. </form>
  207. <?
  208. }
  209. db_close();
  210. $empire=null;
  211. ?>
  212. <tr bgcolor="#FFFFFF">
  213. <td height="25" colspan="3">&nbsp;<?=$returnpage?></td>
  214. </tr>
  215. </table>
  216. </body>
  217. </html>