帝国CMS会员中心调用会员发布信息总数的方法
2018-10-23 站长 站长日志
希望在会员中心首页,调用显示会员总共投稿发布了多少篇信息,以帝国CMS7.0为例,代码如下:
<?=$empire->gettotal("select count(*) as total from phome_ecms_info where userid='$user[userid]' ")?>
这是根据数据表查询调用的,所以在代码中修改成网站实际数据表
<?=$empire->gettotal("select count(*) as total from phome_ecms_info where userid='$user[userid]' ")?>
这是根据数据表查询调用的,所以在代码中修改成网站实际数据表