帝国cms自定义专题列表模板list.var中获取对应专题下的信息、信息数量及信息所属栏目名称

时间:2024年04月10日

/

来源:网络

/

编辑:佚名

帝国cms自定义专题列表中获取对应专题下的信息、信息数量及信息所属栏目名称其实还简单的,list.var中代码如下:
$rr = $empire->fetch1("SELECT GROUP_CONCAT(id) from phome_enewsztinfo where ztid='$r[id]'");
$ff = $rr[0];
$ga = explode(",", $ff);
for ($i = 0; $i < 6; $i++) {
    if ($ga[$i]) {
        $cc = $empire->fetch1("select * from phome_ecms_app where id='$ga[$i]'");
        
        // 查询phome_enewsclass表
        $classInfo = $empire->fetch1("select * from phome_enewsclass where classid='$cc[classid]'");
        $classname = $classInfo['classname'];
        $nr .= '<li><a href="'.$cc[titleurl].'" target="_blank"><img src="'.$cc[titlepic].'" alt="'.$cc[title].'" /><p>'.$cc[title].'</p><span>'.$classname.'</span></a></li>';
    }
}
$num = $empire->gettotal("select count(*) as total from phome_enewsztinfo where ztid='$r[id]'");
$listtemp = '<li>
    <a href="/[!--titleurl--]/" target="_blank"><img src="[!--titlepic--]" alt="[!--title--]"/></a>
    <div class="info">
        <a href="/[!--titleurl--]/" target="_blank"><p class="name">[!--title--]</p><span>更新:[!--newstime--]</span></a>
        <ul>
            '.$nr.'
        </ul>
    </div>
    <em><i class="ico"></i><a href="/[!--titleurl--]/" target="_blank">'.$num.'</a>款</em>
    <div class="line"></div>
</li>';
效果图如下:
猜你需要

豫ICP备2021026617号-1  豫公网安备:41172602000185   Copyright © 2021-2028 www.78moban.com/ All Rights Reserved

本站作品均来自互联网,转载目的在于传递更多信息,并不代表本站赞同其观点和对其真实性负责。如有侵犯您的版权,请联系 1565229909#qq.com(把#改成@),我们将立即处理。