📄 gbookclass.php
字号:
<?php
require("../../class/connect.php");
include("../../class/db_sql.php");
include("../../class/config.php");
include("../../class/functions.php");
$link=db_connect();
$empire=new mysqlquery();
//验证用户
$logininid=getcvar('loginuserid');
$loginin=getcvar('loginusername');
$loginrnd=getcvar('loginrnd');
$loginlevel=getcvar('loginlevel');
$editor=1;
is_login($logininid,$loginin,$loginrnd);
//验证权限
CheckLevel($logininid,$loginin,$classid,"gbook");
$enews=$_POST['enews'];
if(empty($enews))
{$enews=$_GET['enews'];}
if($enews)
{
include("../../class/com_functions.php");
}
if($enews=="AddGbookClass")
{
AddGbookClass($_POST,0,$logininid,$loginin);
}
elseif($enews=="EditGbookClass")
{
EditGbookClass($_POST,0,$logininid,$loginin);
}
elseif($enews=="DelGbookClass")
{
$bid=$_GET['bid'];
DelGbookClass($bid,0,$logininid,$loginin);
}
else
{}
$sql=$empire->query("select bid,bname,checked,groupid from {$dbtbpre}enewsgbookclass order by bid desc");
//----------会员组
$sql1=$empire->query("select groupid,groupname from {$dbtbpre}enewsmembergroup order by level");
while($l_r=$empire->fetch($sql1))
{
$membergroup.="<option value='".$l_r[groupid]."'>".$l_r[groupname]."</option>";
}
//风格
$loginadminstyleid=(int)getcvar('loginadminstyleid');
?>
<!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="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
</head>
<body>
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
<tr>
<td>位置:<a href="gbook.php">管理留言</a> > <a href="GbookClass.php">管理留言分类</a></td>
</tr>
</table>
<form name="form1" method="post" action="GbookClass.php">
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
<tr class="header">
<td height="25">增加留言分类:
<input name=enews type=hidden id="enews" value=AddGbookClass>
</td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"> 分类名称:
<input name="bname" type="text" id="bname">
<select name="groupid" id="groupid">
<option value="0">游客</option>
<?=$membergroup?>
</select>
<input name="checked" type="checkbox" id="checked" value="1">
需要审核
<input type="submit" name="Submit" value="增加">
<input type="reset" name="Submit2" value="重置"></td>
</tr>
</table>
</form>
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
<tr class="header">
<td width="7%"><div align="center">ID</div></td>
<td width="39%" height="25"><div align="center">分类名称</div></td>
<td width="39%"><div align="center">留言板地址</div></td>
<td width="15%" height="25"><div align="center">操作</div></td>
</tr>
<?
while($r=$empire->fetch($sql))
{
$gourl=$public_r[newsurl]."e/tool/gbook?bid=".$r[bid];
$checked="";
if($r[checked])
{
$checked=" checked";
}
$thismembergroup=str_replace("<option value='".$r[groupid]."'>","<option value='".$r[groupid]."' selected>",$membergroup);
?>
<form name=form2 method=post action=GbookClass.php>
<input type=hidden name=enews value=EditGbookClass>
<input type=hidden name=bid value=<?=$r[bid]?>>
<tr bgcolor="#FFFFFF">
<td><div align="center">
<?=$r[bid]?>
</div></td>
<td height="25"> <div align="center">
<input name="bname" type="text" id="bname" value="<?=$r[bname]?>">
<select name="groupid" id="groupid">
<option value="0">游客</option>
<?=$thismembergroup?>
</select>
<input name="checked" type="checkbox" id="checked" value="1"<?=$checked?>>
审核</div></td>
<td><div align="center">
<input name="textfield" type="text" size="32" value="<?=$gourl?>">
[<a href="<?=$gourl?>" target="_blank">访问</a>]</div></td>
<td height="25"><div align="center">
<input type="submit" name="Submit3" value="修改">
<input type="button" name="Submit4" value="删除" onclick="self.location.href='GbookClass.php?enews=DelGbookClass&bid=<?=$r[bid]?>';">
</div></td>
</tr>
</form>
<?
}
db_close();
$empire=null;
?>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -