一:動態調用上一篇下一篇鏈接
- <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 //開源軟件:Vevb.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 "下一篇:很抱歉沒有了";
- }
- ?>
新聞熱點
疑難解答