帝国CMS统计留言数量的方法

时间:2017-04-08

本文实例讲述了帝国CMS统计留言数量的方法。分享给大家供大家参考。具体实现方法如下:

帝国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实现搜索关键字带点击数效果的方法 下一篇:帝国CMS中robots.txt文件用法

相关文章

最新文章