帝国CMS二次开发统计留言数量
2013-07-30 站长 站长日志
帝国CMS指定模型下的留言数量 代码:
<?php $totalnum=(int)$_GET['totalnum']; $totalquery="select count(*) as total from ***_enewsgbook where bid=1 and checked=0"; $num=$empire->gettotal($totalquery);//取得总条数 echo $num; ?>
帝国CMS不指定模型留言数量 代码:
<?php $totalnum=(int)$_GET['totalnum']; $totalquery="select count(*) as total from ***_enewsgbook"; $num=$empire->gettotal($totalquery);//取得总条数 echo $num; ?>
上一篇:帝国CMS搜索关键字带点击数效果
下一篇:帝国CMS会员信息调用方法