当前位置: 首页 > 站长资讯 > 正文页面

帝国CMS内容页调用上一篇、下一篇的方法

这篇文章主要为大家介绍了帝国CMS内容页调用上一篇与下一篇方法,除了帝国自带的上一页与下一页标签之外,本文实例分析了采用动态调用及灵动标签SQL调用等方法来实现上一页与下一页的功能Ehr网站目录_网站网址收录与提交入口

一、动态调用上一篇、下一篇链接Ehr网站目录_网站网址收录与提交入口

动态调用上一篇链接:Ehr网站目录_网站网址收录与提交入口

<a href="[!--news.url--]e/public/GotoNext?classid=[!--classid--]&id=[!--id--]&enews=pre">上一篇</a>Ehr网站目录_网站网址收录与提交入口

动态调用下一篇链接:Ehr网站目录_网站网址收录与提交入口

<a href="[!--news.url--]e/public/GotoNext?classid=[!--classid--]&id=[!--id--]&enews=next">下一篇</a>Ehr网站目录_网站网址收录与提交入口

二、灵动标签和SQl语句调用Ehr网站目录_网站网址收录与提交入口

上一篇链接:Ehr网站目录_网站网址收录与提交入口

[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}]Ehr网站目录_网站网址收录与提交入口

<?phpEhr网站目录_网站网址收录与提交入口

$titleurl=sys_ReturnBqTitleLink($bqr);Ehr网站目录_网站网址收录与提交入口

echo $titleurl;Ehr网站目录_网站网址收录与提交入口

[/e:loop]Ehr网站目录_网站网址收录与提交入口

下一篇链接:(把小于号改成大于号)Ehr网站目录_网站网址收录与提交入口

[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}]Ehr网站目录_网站网址收录与提交入口

<?phpEhr网站目录_网站网址收录与提交入口

$titleurl=sys_ReturnBqTitleLink($bqr);Ehr网站目录_网站网址收录与提交入口

echo $titleurl;Ehr网站目录_网站网址收录与提交入口

[/e:loop]Ehr网站目录_网站网址收录与提交入口

三、运用灵动标签调用,比较简洁的方式Ehr网站目录_网站网址收录与提交入口

<!--上一篇-->Ehr网站目录_网站网址收录与提交入口

[e:loop={'selfinfo',1,0,0,'id<'.$navinfor[id].'','id desc'}]Ehr网站目录_网站网址收录与提交入口

<a href="<?phpEhr网站目录_网站网址收录与提交入口

echo $bqsr[titleurl];Ehr网站目录_网站网址收录与提交入口

$pre='true';Ehr网站目录_网站网址收录与提交入口

?>">上一篇:<?=$bqr[title]?>Ehr网站目录_网站网址收录与提交入口

</a>Ehr网站目录_网站网址收录与提交入口

[/e:loop]Ehr网站目录_网站网址收录与提交入口

<?phpEhr网站目录_网站网址收录与提交入口

if(emptyempty($pre)){Ehr网站目录_网站网址收录与提交入口

echo "上一篇:很抱歉没有了";Ehr网站目录_网站网址收录与提交入口

}Ehr网站目录_网站网址收录与提交入口

?>Ehr网站目录_网站网址收录与提交入口

<!--下一篇-->Ehr网站目录_网站网址收录与提交入口

[e:loop={'selfinfo',1,0,0,'id>'.$navinfor[id].'','id asc'}]Ehr网站目录_网站网址收录与提交入口

<a href="<?phpEhr网站目录_网站网址收录与提交入口

echo $bqsr[titleurl];Ehr网站目录_网站网址收录与提交入口

$next='true';Ehr网站目录_网站网址收录与提交入口

?>">下一篇:<?=$bqr[title]?>Ehr网站目录_网站网址收录与提交入口

</a>Ehr网站目录_网站网址收录与提交入口

[/e:loop]Ehr网站目录_网站网址收录与提交入口

<?phpEhr网站目录_网站网址收录与提交入口

if(emptyempty($next)){Ehr网站目录_网站网址收录与提交入口

echo "下一篇:很抱歉没有了";Ehr网站目录_网站网址收录与提交入口

}Ehr网站目录_网站网址收录与提交入口

?>Ehr网站目录_网站网址收录与提交入口

四、控制上一篇下一篇标题字数(截取30个字符为例)Ehr网站目录_网站网址收录与提交入口

运用:<?=esub($bqr[title],30)?>Ehr网站目录_网站网址收录与提交入口

<!--上一篇-->Ehr网站目录_网站网址收录与提交入口

[e:loop={'selfinfo',1,0,0,'id<'.$navinfor[id].'','id desc'}]Ehr网站目录_网站网址收录与提交入口

<a href="<?phpEhr网站目录_网站网址收录与提交入口

echo $bqsr[titleurl];Ehr网站目录_网站网址收录与提交入口

$pre='true';Ehr网站目录_网站网址收录与提交入口

?>">上一篇: <?=esub($bqr[title],30)?></a>Ehr网站目录_网站网址收录与提交入口

[/e:loop]Ehr网站目录_网站网址收录与提交入口

<?phpEhr网站目录_网站网址收录与提交入口

if(emptyempty($pre)){Ehr网站目录_网站网址收录与提交入口

echo "上一篇:很抱歉没有了";Ehr网站目录_网站网址收录与提交入口

}Ehr网站目录_网站网址收录与提交入口

?>Ehr网站目录_网站网址收录与提交入口

<!--下一篇-->Ehr网站目录_网站网址收录与提交入口

[e:loop={'selfinfo',1,0,0,'id>'.$navinfor[id].'','id asc'}]Ehr网站目录_网站网址收录与提交入口

<a href="<?phpEhr网站目录_网站网址收录与提交入口

echo $bqsr[titleurl];Ehr网站目录_网站网址收录与提交入口

$next='true';Ehr网站目录_网站网址收录与提交入口

?>">下一篇:<?=esub($bqr[title],30)?>Ehr网站目录_网站网址收录与提交入口

</a>Ehr网站目录_网站网址收录与提交入口

[/e:loop]Ehr网站目录_网站网址收录与提交入口

<?phpEhr网站目录_网站网址收录与提交入口

if(emptyempty($next)){Ehr网站目录_网站网址收录与提交入口

echo "下一篇:很抱歉没有了";Ehr网站目录_网站网址收录与提交入口

}Ehr网站目录_网站网址收录与提交入口

?>Ehr网站目录_网站网址收录与提交入口

  

此文由 网站目录_网站网址收录与提交入口 编辑,未经允许不得转载!:

相关文章