📄 word.php
字号:
<?
require("../../class/connect.php");
include("../../class/db_sql.php");
include("../../class/config.php");
include("../../class/functions.php");
include("../../class/com_functions.php");
$link=db_connect();
$empire=new mysqlquery();
//验证用户
$logininid=$_COOKIE['enewsloginuserid'];
$loginin=$_COOKIE['enewsloginusername'];
$loginrnd=$_COOKIE['enewsloginrnd'];
$loginlevel=$_COOKIE['enewsloginlevel'];
$editor=1;
is_login($logininid,$loginin,$loginrnd);
//验证权限
CheckLevel($logininid,$loginin,$classid,"word");
$enews=$_POST['enews'];
if(empty($enews))
{$enews=$_GET['enews'];}
//增加过滤字符
if($enews=="AddWord")
{
$oldword=$_POST['oldword'];
$newword=$_POST['newword'];
AddWord($oldword,$newword,$logininid,$loginin);
}
//修改过滤字符
elseif($enews=="EditWord")
{
$wordid=$_POST['wordid'];
$oldword=$_POST['oldword'];
$newword=$_POST['newword'];
EditWord($wordid,$oldword,$newword,$logininid,$loginin);
}
//删除过滤字符
elseif($enews=="DelWord")
{
$wordid=$_GET['wordid'];
DelWord($wordid,$logininid,$loginin);
}
else
{}
$sql=$empire->query("select wordid,oldword,newword from phome_enewswords order by wordid desc");
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>过滤字符</title>
<link href="../../data/images/css.css" rel="stylesheet" type="text/css">
</head>
<body>
<table width="98%%" border="0" align="center" cellpadding="3" cellspacing="1">
<tr>
<td>位置:其他管理 -> 管理过滤字符</td>
</tr>
</table>
<form name="form1" method="post" action="word.php">
<input type=hidden name=enews value=AddWord>
<table width="98%%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
<tr class="header">
<td height="25"><strong><font color="#FFFFFF">增加过滤字符:</font></strong></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"> 将新闻内容包含
<input name="oldword" type="text" id="oldword">
替换成
<input name="newword" type="text" id="newword">
<input type="submit" name="Submit" value="增加">
<input type="reset" name="Submit2" value="重置"></td>
</tr>
</table>
</form>
<table width="98%%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
<tr class="header">
<td width="70%" height="25"><font color="#FFFFFF"><strong>过滤字符</strong></font></td>
<td width="30%" height="25"><div align="center"><font color="#FFFFFF"><strong>操作</strong></font></div></td>
</tr>
<?
while($r=$empire->fetch($sql))
{
?>
<form name=form2 method=post action=word.php>
<input type=hidden name=enews value=EditWord>
<input type=hidden name=wordid value=<?=$r[wordid]?>>
<tr bgcolor="#FFFFFF">
<td height="25"> 将新闻内容包含
<input name="oldword" type="text" id="oldword" value="<?=$r[oldword]?>">
替换成
<input name="newword" type="text" id="newword" value="<?=$r[newword]?>">
</td>
<td height="25"><div align="center">
<input type="submit" name="Submit3" value="修改">
<input type="button" name="Submit4" value="删除" onclick="self.location.href='word.php?enews=DelWord&wordid=<?=$r[wordid]?>';">
</div></td>
</tr>
</form>
<?
}
db_close();
$empire=null;
?>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -