帝国CMS前端模板中统计留言板用户留言数量的方法
帝国cms前端模板中统计用户的留言数量,例如我们要调用模型一的用户留言数量,代码如下:
$totalnum=(int)$_GET['totalnum'];
$totalquery="select count(*) as total from {$dbtbpre}enewsgbook where bid=1 and checked=0";
$num=$empire->gettotal($totalquery);//取得总条数
echo $num;
其中bid=1是模型id,可以根据自己的实际需求修改。