query("insert into {$dbtbpre}enewsnotcj(word) values('".eaddslashes($word)."');"); $id=$empire->lastid(); GetNotcj(); if($sql) { //操作日志 insert_dolog("id=$id"); printerror("AddNotcjSuccess","NotCj.php".hReturnEcmsHashStrHref2(1)); } else { printerror("DbError","history.go(-1)"); } } //修改采集随机字符 function EditNotcj($add,$userid,$username){ global $empire,$dbtbpre; //验证权限 CheckLevel($userid,$username,$classid,"notcj"); $id=(int)$add['id']; if(empty($add[word])||!$id) { printerror("EmptyNotcjWord","history.go(-1)"); } $word=RepPhpAspJspcode($add[word]); $sql=$empire->query("update {$dbtbpre}enewsnotcj set word='".eaddslashes($word)."' where id='$id'"); GetNotcj(); if($sql) { //操作日志 insert_dolog("id=$id"); printerror("EditNotcjSuccess","NotCj.php".hReturnEcmsHashStrHref2(1)); } else { printerror("DbError","history.go(-1)"); } } //删除采集随机字符 function DelNotcj($id,$userid,$username){ global $empire,$dbtbpre; //验证权限 CheckLevel($userid,$username,$classid,"notcj"); $id=(int)$id; if(!$id) { printerror("EmptyDelNotcjid","history.go(-1)"); } $sql=$empire->query("delete from {$dbtbpre}enewsnotcj where id='$id'"); GetNotcj(); if($sql) { //操作日志 insert_dolog("id=$id"); printerror("DelNotcjSuccess","NotCj.php".hReturnEcmsHashStrHref2(1)); } else { printerror("DbError","history.go(-1)"); } } //生成随机字符缓存 function GetNotcj(){ global $empire,$dbtbpre; $file=ECMS_PATH."e/data/dbcache/notcj.php"; $sql=$empire->query("select id,word from {$dbtbpre}enewsnotcj"); $i=0; while($r=$empire->fetch($sql)) { $i++; $str.="\$notcj_r[$i]='".addslashes($r[word])."'; "; } $string=""; WriteFiletext_n($file,$string); } $enews=$_POST['enews']; if(empty($enews)) {$enews=$_GET['enews'];} if($enews) { hCheckEcmsRHash(); } //增加随机字符 if($enews=="AddNotcj") { AddNotcj($_POST,$logininid,$loginin); } //修改随机字符 elseif($enews=="EditNotcj") { EditNotcj($_POST,$logininid,$loginin); } //删除随机字符 elseif($enews=="DelNotcj") { $id=$_GET['id']; DelNotcj($id,$logininid,$loginin); } else {} $search=$ecms_hashur['ehref']; $start=0; $page=(int)$_GET['page']; $page=RepPIntvar($page); $line=15;//每行显示 $page_line=15; $offset=$page*$line; $totalquery="select count(*) as total from {$dbtbpre}enewsnotcj"; $num=$empire->gettotal($totalquery);//取得总条数 $query="select id,word from {$dbtbpre}enewsnotcj"; $query.=" order by id desc limit $offset,$line"; $sql=$empire->query($query); $returnpage=page2($num,$line,$page_line,$start,$page,$search); ?> 管理防采集随机字符
位置:防采集管理 > 管理防采集随机字符
增加防采集随机字符:
fetch($sql)) { $word=ehtmlspecialchars($r[word]); ?> >
ID
防采集随机字符
操作