帝国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;
?>


点击这里复制本文地址

以上内容由qqso网站教程网整理呈现.
原文地址:帝国CMS二次开发统计留言数量发布于2021-08-15 12:00:34。
请务必在转载分享时注明本文地址!如对内容有疑问,请联系我们,谢谢!