您的位置:首页 > 帝国cms教程

帝国cms调用文章收藏数量,列表页和内容页调用收藏数量的方法稍微不同

2023-11-15 16:35:40 帝国cms教程 239

1、内容页调用文章的收藏数
<?
$scs=$empire->gettotal("select count(*) as total from phome_enewsfava where id='$navinfor[id]' and classid='$navinfor[classid]'");
?>
收藏数:<?=$scs?>

2、列表页调用文章的收藏数
$scs=$empire->gettotal("select count(*) as total from phome_enewsfava where id='$r[id]' and classid='$r[classid]'");
$listtemp='收藏数:'.$scs;

相关推荐