帝国cms没有提供显示文章收藏数量的标签,但强大的帝国cms,我们可以通过查询mysql并统计出数量,下面为代码,在相应页面插入即可。
下面是列表页的代码:
折叠PHP 代码
- $scs=$empire->gettotal("select count(*) as total from phome_enewsfava where id='$r[id]' and classid='$r[classid]'");
- $listtemp='收藏数:'.$scs;
下面是内容页的代码:
折叠PHP 代码
- gettotal("select count(*) as total from phome_enewsfava where id='$navinfor[id]' and classid='$navinfor[classid]'");?>