PHP怎么实现在本页显示上下页的标题..?
就像空间日记的那种..怎么在这篇日记显示下一篇日记的内容!
追问:用PHP来弄噢..我的意思是读出数据库的资料,然后没页显示一条记录..把那些记录连接在一起!每一页都可以显示上下页的标题,或内容!
答案:参考下面:只是提供思路。
在show.php里"include template('phpcms', $template);"前直接添加以下代码就可以调用了
[code]
//<添加自定义代码>
$more_pre = $db->get_one("SELECT title,url FROM `".DB_PRE."content` WHERE `contentid`<$contentid and catid='$catid' order by contentid desc limit 0,1");
$more_next = $db->get_one("SELECT title,url FROM `".DB_PRE."content` WHERE `contentid`>$contentid and catid='$catid' order by contentid asc limit 0,1");
//</添加自定义代码>
在模板(show.html)中调用方式
<ul>
<li>上一篇: <a href=><li>下一篇: <a href=></ul>
设置树状导航标签。
把电脑从其哈
上一个:求一个PHP高手,请问日期与代码之前的关系
下一个:求好的php教程!!!!!!!!!!(书籍、视频都可以)