东方星雨

简单网络

一个爱好网络的80后男站长。

关注我东方星雨个人微信号:476847113

您现在的位置是:首页 > 站长日志

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

2018-03-26 站长 站长日志

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

  较新一篇:

  <?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>";

  }

  ?>

文章评论