您现在的位置是:首页 > 教程 > 帝国CMS教程帝国CMS教程

怎么利用gettotal统计查询来调用帝国CMS当前栏目缩略图

曹讯波2023-05-29 23:02:31帝国CMS教程已有人查阅

导读利用gettotal统计查询来调用帝国CMS当前栏目缩略图方法,注释:调用什么字段就填写什么字段,如栏目ID:classid 、栏目图片:classimg。

利用gettotal统计查询来调用帝国CMS当前栏目缩略图方法
当前栏目ID  

<?=$empire->gettotal("select classid as total from {$dbtbpre}enewsclass where classid={$GLOBALS['navclassid']} limit 1")?>

当前栏目的缩略图:

<?=$empire->gettotal("select classimg as total from {$dbtbpre}enewsclass where classid={$GLOBALS['navclassid']}  limit 1")?>

当前父栏目ID  

<?=$empire->gettotal("select classid as total from {$dbtbpre}enewsclass where classid={$class_r[$navclassid][bclassid]} limit 1")?>

当前父栏目的缩略图

<?=$empire->gettotal("select classimg as total from {$dbtbpre}enewsclass where classid={$class_r[$navclassid][bclassid]} limit 1")?>

注释:调用什么字段就填写什么字段,如栏目ID:classid 、栏目图片:classimg。注意:gettotal用count(*)时为统计,用*时为字段;*号也可以是字段如:classid

本文标签:

很赞哦! ()

留言与评论 (共有 条评论)
验证码:

相关标签