You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
83 lines
2.1 KiB
83 lines
2.1 KiB
<?php
|
|
require("../../class/connect.php");
|
|
if(!defined('InEmpireCMS'))
|
|
{
|
|
exit();
|
|
}
|
|
require("../../class/db_sql.php");
|
|
require("../../class/q_functions.php");
|
|
require "../".LoadLang("pub/fun.php");
|
|
$link=db_connect();
|
|
$empire=new mysqlquery();
|
|
$editor=1;
|
|
eCheckCloseMods('gb');//关闭模块
|
|
//分类id
|
|
$bid=(int)$_GET['bid'];
|
|
$gbr=$empire->fetch1("select bid,bname,groupid from {$dbtbpre}enewsgbookclass where bid='$bid'");
|
|
if(empty($gbr['bid']))
|
|
{
|
|
printerror("EmptyGbook","",1);
|
|
}
|
|
//权限
|
|
if($gbr['groupid'])
|
|
{
|
|
include("../../member/class/user.php");
|
|
$user=islogin();
|
|
include("../../data/dbcache/MemberLevel.php");
|
|
if($level_r[$gbr[groupid]][level]>$level_r[$user[groupid]][level])
|
|
{
|
|
echo"<script>alert('您的会员级别不足(".$level_r[$gbr[groupid]][groupname]."),没有权限提交信息!');history.go(-1);</script>";
|
|
exit();
|
|
}
|
|
}
|
|
esetcookie("gbookbid",$bid,0);
|
|
$bname=$gbr['bname'];
|
|
$search="&bid=$bid";
|
|
$page=(int)$_GET['page'];
|
|
$page=RepPIntvar($page);
|
|
$start=0;
|
|
$line=$public_r['gb_num'];//每页显示条数
|
|
$page_line=10;//每页显示链接数
|
|
$offset=$start+$page*$line;//总偏移量
|
|
$totalnum=(int)$_GET['totalnum'];
|
|
if(!$public_r['usetotalnum'])
|
|
{
|
|
$totalnum=0;
|
|
}
|
|
if($totalnum>0)
|
|
{
|
|
$num=$totalnum;
|
|
}
|
|
else
|
|
{
|
|
$totalquery="select count(*) as total from {$dbtbpre}enewsgbook where bid='$bid' and checked=0";
|
|
$num=$empire->gettotal($totalquery);//取得总条数
|
|
}
|
|
if($public_r['usetotalnum'])
|
|
{
|
|
$search.="&totalnum=$num";
|
|
}
|
|
//checkpageno
|
|
eCheckListPageNo($page,$line,$num);
|
|
$query="select lyid,name,email,`mycall`,lytime,lytext,retext from {$dbtbpre}enewsgbook where bid='$bid' and checked=0";
|
|
$query=$query." order by lyid desc limit $offset,$line";
|
|
$sql=$empire->query($query);
|
|
$listpage=page1($num,$line,$page_line,$start,$page,$search);
|
|
$url="<a href='".ReturnSiteIndexUrl()."'>".$fun_r['index']."</a> > ".$fun_r['saygbook'];
|
|
?>
|
|
<!--empire.listtemp.top-->
|
|
<?
|
|
while($r=$empire->fetch($sql))
|
|
{
|
|
$r['retext']=nl2br(stripSlashes($r[retext]));
|
|
$r['lytext']=nl2br(stripSlashes($r[lytext]));
|
|
?>
|
|
<!--empire.listtemp.center-->
|
|
<?
|
|
}
|
|
?>
|
|
<!--empire.listtemp.footer-->
|
|
<?php
|
|
db_close();
|
|
$empire=null;
|
|
?>
|