内容页调用上一篇,下一篇方法集合
发布:smiling 来源: PHP粉丝网 添加日期:2014-11-22 09:58:27 浏览: 评论:0
一:动态调用上一篇下一篇链接
- <a href="[!--news.url--]e/public/GotoNext?classid=[!--classid--]&id=[!--id--]&enews=pre">上一篇</a> 动态调用上一篇链接
- <a href="[!--news.url--]e/public/GotoNext?classid=[!--classid--]&id=[!--id--]&enews=next">下一篇</a> 动态调用下一篇链接
二:灵动标签和SQl语句调用
- 上一篇链接:
- [e:loop={"select id,classid,newspath,filename,groupid,titleurl from [!db.pre!]ecms_".$class_r[$navinfor[classid]]['tbname']." where id<".$navinfor[id]." and classid=".$navinfor[classid]." and checked=1 order by id desc limit 1",1,24,0}]
- <?php
- $titleurl=sys_ReturnBqTitleLink($bqr);
- echo $titleurl;
- [/e:loop]
- 下一篇链接:(把小于号改成大于号)
- [e:loop={"select id,classid,newspath,filename,groupid,titleurl from [!db.pre!]ecms_".$class_r[$navinfor[classid]]['tbname']." where id>".$navinfor[id]." and classid=".$navinfor[classid]." and checked=1 order by id desc limit 1",1,24,0}]
- <?php
- $titleurl=sys_ReturnBqTitleLink($bqr);
- echo $titleurl;
- [/e:loop]
三:运用灵动标签调用,比较简洁的方式(感谢 落木萧萧)
- <!--上一篇-->
- [e:loop={'selfinfo',1,0,0,'id<'.$navinfor[id].'','id desc'}]
- <a href="<?php
- echo $bqsr[titleurl];
- $pre='true';
- ?>">上一篇:<?=$bqr[title]?>
- </a>
- [/e:loop]
- <?php
- if(emptyempty($pre)){
- echo "上一篇:很抱歉没有了";
- }
- ?>
- <!--下一篇-->
- [e:loop={'selfinfo',1,0,0,'id>'.$navinfor[id].'','id asc'}]
- <a href="<?php //开源软件:phpfensi.com
- echo $bqsr[titleurl];
- $next='true';
- ?>">下一篇:<?=$bqr[title]?>
- </a>
- [/e:loop]
- <?php
- if(emptyempty($next)){
- echo "下一篇:很抱歉没有了";
- }
- ?>
四:控制上一篇下一篇标题字数截取30个字符为例
运用:<?=esub($bqr[title],30)?>
- <!--上一篇-->
- [e:loop={'selfinfo',1,0,0,'id<'.$navinfor[id].'','id desc'}]
- <a href="<?php
- echo $bqsr[titleurl];
- $pre='true';
- ?>">上一篇: <?=esub($bqr[title],30)?></a>
- [/e:loop]
- <?php
- if(emptyempty($pre)){
- echo "上一篇:很抱歉没有了";
- }
- ?>
- <!--下一篇-->
- [e:loop={'selfinfo',1,0,0,'id>'.$navinfor[id].'','id asc'}]
- <a href="<?php
- echo $bqsr[titleurl];
- $next='true';
- ?>">下一篇:<?=esub($bqr[title],30)?>
- </a>
- [/e:loop]
- <?php
- if(emptyempty($next)){
- echo "下一篇:很抱歉没有了";
- }
- ?>
Tags: 帝国CMS上一篇 帝国CMS下一篇
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)