帝国cms会员空间调用会员栏目投稿数量

前端之家收集整理的这篇文章主要介绍了帝国cms会员空间调用会员栏目投稿数量前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

帝国cms使用以下代码可以使会员空间调用会员栏目投稿数量方法教程

<?PHP

//test start
require("../data/dbcache/class.PHP");
$class_total=array();
foreach($class_r as $classid =>$v)
{
//只列出终极栏目
if($class_r[$classid])
{
$class_total[$classid]=$empire->gettotal("select count(*) as total from {$dbtbpre}ecms_".$class_r[$classid][tbname]." where classid='$classid' and userid='$userid' and ismember=1");

if($class_total[$classid]==0)
{
continue;
}
//现在直接输出测试 你也可以用数组其他地方调用
echo "栏目ID:$classid 投稿数量: $class_total[$classid] <br>";
}
}
//test end


?>

猜你在找的帝国CMS相关文章