zoukankan      html  css  js  c++  java
  • 灵动标签实现循环子栏目数据——实现 循环子栏目数据标签 (listsonclass)的效果

    <div class="sae_gl">
    <?php
    $bclassid=$GLOBALS[navclassid]; //取得本栏目id
    //取得本栏目下的子栏目
    ?>
    [e:loop={"select classid, classname, classpath from `[!db.pre!]enewsclass` where bclassid='$bclassid' order by `classid` desc ",7,24,0}]
    <?php

    //这里是取得该分类下的有图片的最新数据
    $commbook=$empire->fetch1("select title,titlepic,smalltext,titleurl,keyboard,groupid,classid,newspath,filename,id from phome_ecms_news where classid = ".$bqr[classid]." and titlepic!='' order by newstime desc limit 1");
    $commbookurl=sys_ReturnBqTitleLink($commbook);
    ?>
      <div class="gl_01" <?php $i++;if($i%2==0){echo 'id="gl_01"';} ?> >
         <ol class="gl_c"><h3><?=$bqr[classname]?></h3><a href="<?=$public_r[newsurl].$bqr[classpath]?>">更多>></a></ol>
             <div class="yd">
             <dl>
               <dt><a href="<?=$commbookurl?>"><img src="<?=$commbook[titlepic]?>" width="108px" height="85px" /></a></dt>
               <dd><b><a href="<?=$commbookurl?>"><?=$commbook[title]?></a></b><a class="uus" href="#"><?=esub($commbook[smalltext],84)?></a></dd>
             </dl>
             <ol class="ga_ic">

         <?php
    //取得该分类下的最新数据

        $newbook=$empire->query("select title,titlepic,smalltext,titleurl,keyboard,newstime,groupid,classid,newspath,filename,id from phome_ecms_news  where classid =".$bqr[classid]." order by newstime desc limit 5");
       
        while($r=$empire->fetch($newbook)) {
        ?>
        <li><a href="<?=sys_ReturnBqTitleLink($r)?>" title="<?=$r[title]?>">·<?=$r[title]?></a><span class="riq"><?=date('Y-m-d',$r[newstime])?></span></li>
        <?php
         }
         //显示5条
        ?> 
             </ol>
             </div>
             <div class="bj_t"></div>
      </div>
      [/e:loop]
    </div>

  • 相关阅读:
    ZINTERSTORE — Redis 命令参考
    Wombat vim colorscheme – customized Chronosbox
    我的vim colorscheme 白色之夜 博客园
    Python list of class attributes Python
    vim配色方案colorscheme设置
    colorscheme install
    Python类中的私有成员(私有函数,私有变量)
    Pebble Overview
    用python 发送邮件
    Python发送带附件的Email
  • 原文地址:https://www.cnblogs.com/surplus/p/14604504.html
Copyright © 2011-2022 走看看