📄 listinfo.php
字号:
<?php
require("../class/connect.php");
include("../class/db_sql.php");
include("../class/config.php");
include("../class/class.php");
include("../class/user.php");
include("../class/q_functions.php");
include LoadLang("pub/fun.php");
$link=db_connect();
$empire=new mysqlquery();
//验证是否登陆
$user=islogin();
//取得模型id
$mid=(int)$_GET['mid'];
if(!$mid)
{
printerror("ErrorUrl","history.go(-1)",1);
}
$mr=$empire->fetch1("select tbname,qmname from {$dbtbpre}enewsmod where mid=$mid");
if(!$mr['tbname'])
{
printerror("ErrorUrl","history.go(-1)",1);
}
esetcookie("qdelinfo","dgcms");
$totalnum=(int)$_GET['totalnum'];
$start=(int)$_GET['start'];
$page=(int)$_GET['page'];
$line=25;//每行显示
$page_line=16;
$offset=$start+$page*$line;
$add="";
$search="&mid=$mid";
//搜索
$sear=$_GET['sear'];
if($sear)
{
$keyboard=RepPostVar2($_GET['keyboard']);
$show=$_GET['show'];
//关键字
if($keyboard)
{
$add=" and (title like '%$keyboard%')";
}
$search.="&sear=1&keyboard=$keyboard&show=$show";
}
$query="select id,title,checked,ismember,username,plnum,isqf,classid,totaldown,onclick,newstime,titleurl,groupid,newspath,filename,titlepic,havehtml,truetime,lastdotime,istop,isgood,firsttitle from {$dbtbpre}ecms_".$mr['tbname']." where userid='$user[userid]' and ismember=1".$add;
$totalquery="select count(*) as total from {$dbtbpre}ecms_".$mr['tbname']." where userid='$user[userid]' and ismember=1".$add;
if(empty($totalnum))
{
$num=$empire->gettotal($totalquery);//取得总条数
}
else
{
$num=$totalnum;
}
$search.="&totalnum=$num";
$query.=" order by newstime desc limit $offset,$line";
$sql=$empire->query($query);
$returnpage=page1($num,$line,$page_line,$start,$page,$search);
$url="<a href='../../'>首页</a> > <a href='../member/cp'>控制面板</a> > <a href='ListInfo.php?mid=$mid'>管理信息</a> (".$mr[qmname].")";
include("../data/template/cp_1.php");
?>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="17%" valign="top">
<?
//输出可管理的模型
$modsql=$empire->query("select mid,qmname from {$dbtbpre}enewsmod where qenter<>'' order by mid");
while($modr=$empire->fetch($modsql))
{
$fontb="";
$fontb1="";
if($modr['mid']==$mid)
{
$fontb="<b>";
$fontb1="</b>";
}
?>
<table width="100%" border="0" cellpadding="3" cellspacing="1" class="tableborder">
<tr class="header">
<td height="23">
<?=$modr[qmname]?>管理</td>
</tr>
<tr>
<td height="23" bgcolor="#FFFFFF"><img src="../data/images/msgnav.gif" width="5" height="5"> <a href="ChangeClass.php?mid=<?=$modr[mid]?>"><?=$fontb?>增加<?=$modr[qmname]?>
<?=$fontb1?></a></td>
</tr>
<tr>
<td height="23" bgcolor="#FFFFFF"><img src="../data/images/msgnav.gif" width="5" height="5"> <a href="ListInfo.php?mid=<?=$modr[mid]?>"><?=$fontb?>管理<?=$modr[qmname]?>
<?=$fontb1?></a></td>
</tr>
</table>
<br>
<?
}
?>
</td>
<td width="1%" valign="top"> </td>
<td width="82%" valign="top">
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="0">
<form name="searchinfo" method="GET" action="ListInfo.php">
<tr>
<td width="25%" height="27">
<input type="button" name="Submit" value="增加信息" onclick="self.location.href='ChangeClass.php?mid=<?=$mid?>';">
</td>
<td width="75%"><div align="right"> 搜索:
<input name="keyboard" type="text" id="keyboard" value="<?=$keyboard?>">
<select name="show">
<option value="0" selected>标题</option>
</select>
<input type="submit" name="Submit2" value="搜索">
<input name="sear" type="hidden" id="sear" value="1">
<input name="mid" type="hidden" value="<?=$mid?>">
</div></td>
</tr>
</form>
</table>
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
<tr class="header">
<td width="50%" height="25"> <div align="center">标题</div></td>
<td width="8%" height="25">
<div align="center">点击</div></td>
<td width="13%" height="25"> <div align="center">发布时间</div></td>
<td width="6%">
<div align="center">评论</div></td>
<td width="6%"><div align="center">审核</div></td>
<td width="17%" height="25">
<div align="center">操作</div></td>
</tr>
<?
while($r=$empire->fetch($sql))
{
//置顶
$istop="";
if($r[istop])
{$istop="<font color=red>[顶".$r[istop]."]</font>";}
//推荐
$isgood="";
if($r[isgood])
{$isgood="<font color=red>[推]</font>";}
//头条
$firsttitle="";
if($r[firsttitle])
{$firsttitle="<font color=red>[头]</font>";}
//时间
$newstime=format_datetime($r[newstime],"Y-m-d");
$oldtitle=$r[title];
$r[title]=stripSlashes(sub($r[title],0,50,false));
if(empty($r[checked]))
{$checked="<font color=red>×</font>";}
else
{$checked="√";}
$plnum=$r[plnum];//评论个数
$titleurl=sys_ReturnBqTitleLink($r);//链接
//标题图片
$showtitlepic="";
if($r[titlepic])
{$showtitlepic="<a href='".$r[titlepic]."' title='预览标题图片' target=_blank><img src='../data/images/showimg.gif' border=0></a>";}
?>
<tr bgcolor="#FFFFFF" id=news<?=$r[id]?>>
<td height="25"> <div align="left">
<?=$istop.$firsttitle.$isgood?>
<a href="<?=$titleurl?>" target=_blank title="<?=$oldtitle?>">
<?=$r[title]?>
</a>
</div></td>
<td height="25"> <div align="center"> <a title="下载次数:<?=$r[totaldown]?>">
<?=$r[onclick]?>
</a> </div></td>
<td height="25"> <div align="center"><?=$newstime?></div></td>
<td><div align="center"><a href="../pl?id=<?=$r[id]?>&classid=<?=$r[classid]?>" title="查看评论" target=_blank><u>
<?=$plnum?>
</u></a></div></td>
<td><div align="center">
<?=$checked?>
</div></td>
<td height="25"> <div align="center">[<a href="AddInfo.php?enews=MEditInfo&classid=<?=$r[classid]?>&id=<?=$r[id]?>&mid=<?=$mid?>">修改</a>]
[<a href="ecms.php?enews=MDelInfo&classid=<?=$r[classid]?>&id=<?=$r[id]?>&mid=<?=$mid?>" onclick="return confirm('确认要删除?');">删除</a>]
</div></td>
</tr>
<?
}
?>
<tr bgcolor="#FFFFFF">
<td height="25" colspan="6">
<?=$returnpage?>
</td>
</tr>
</table>
</td>
</tr>
</table>
<?
include("../data/template/cp_2.php");
db_close();
$empire=null;
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -