📄 picclass.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=$_COOKIE['enewsloginuserid'];
$loginin=$_COOKIE['enewsloginusername'];
$loginrnd=$_COOKIE['enewsloginrnd'];
$loginlevel=$_COOKIE['enewsloginlevel'];
$editor=1;
is_login($logininid,$loginin,$loginrnd);
//验证权限
CheckLevel($logininid,$loginin,$classid,"picnews");
$sql=$empire->query("select classid,classname from phome_enewspicclass order by classid 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="../enews.php">
<input type=hidden name=enews value=AddPicClass>
<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="classname" type="text" id="classname">
<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="10%"><div align="center"><font color="#FFFFFF">ID</font></div></td>
<td width="59%" height="25"><div align="center"><font color="#FFFFFF"><strong>类别名称</strong></font></div></td>
<td width="31%" 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=../enews.php>
<input type=hidden name=enews value=EditPicClass>
<input type=hidden name=classid value=<?=$r[classid]?>>
<tr bgcolor="#FFFFFF">
<td><div align="center"><?=$r[classid]?></div></td>
<td height="25"> <div align="center">
<input name="classname" type="text" id="classname" value="<?=$r[classname]?>">
</div></td>
<td height="25"><div align="center">
<input type="submit" name="Submit3" value="修改">
<input type="button" name="Submit4" value="删除" onclick="self.location.href='../enews.php?enews=DelPicClass&classid=<?=$r[classid]?>';">
</div></td>
</tr>
</form>
<?
}
db_close();
$empire=null;
?>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -