首页 > CMS > 帝国Empire > 正文

帝国cms上一篇”“下一篇”用标题图片代替的方法

2024-08-28 12:23:34
字体:
来源:转载
供稿:网友

   下面是新闻模型举列子,如果要自己的模型的就调自己的表

  较新一篇:

  <?php

  $infoPreNext = $empire->fetch1("

           select * from {$dbtbpre}ecms_news 

           where classid=$GLOBALS[navclassid] 

           and checked=1 

           and newstime>$navinfor[newstime] 

           order by newstime asc limit 1;

    ");

  if(empty($infoPreNext[id])){

            echo "没有了";

  }else{

            echo "<a href='".sys_ReturnBqTitleLink($infoPreNext)."'>

                        <img src='".$infoPreNext[titlepic]."'>

                    </a>";

  }

  ?>

  较早前一篇:

  <?php

  $infoPreNext = $empire->fetch1("

           select * from {$dbtbpre}ecms_news 

           where classid=$GLOBALS[navclassid] 

           and checked=1 

           and newstime<$navinfor[newstime] 

           order by newstime desc limit 1;

    ");

  if(empty($infoPreNext[id])){

           echo "没有了";

  }else{

           echo "<a href='".sys_ReturnBqTitleLink($infoPreNext)."'>

                       <img src='".$infoPreNext[titlepic]."'>

                   </a>";

  }

  ?>

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表