优晟SEO

您现在的位置是:首页 > CMS教程 > 帝国cms > 正文

帝国cms

帝国CMS首页调用会员数/留言数/评论数的方法

帝国   首页   留言  
佚名 2024-08-28帝国cms
其实就是用SQL语句的count来统计数据表里面的信息数,具体代码如下:(直接模板里用PHP输出即可)会员数量:<?=$empire->gettotal("select count(*) as total from phome_enewsmember");?>留言数量:<?=$empire->gettotal("selec……

帝国CMS首页调用会员数/留言数/评论数的方法

其实就是用SQL语句的count来统计数据表里面的信息数,具体代码如下:(直接模板里用PHP输出即可)

会员数量:<?=$empire->gettotal("select count(*) as total from phome_enewsmember");?>留言数量:<?=$empire->gettotal("select count(*) as total from phome_enewsgbook");?>评论数量:<?=$empire->gettotal("select count(*) as total from phome_enewspl_1");?>