帝国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; ?>
原创文章,作者:AQRPE,如若转载,请注明出处:http://www.wangzhanshi.com/n/10009.html