帝国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 ?>
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
评论(0)