1个回答
展开全部
参考下面:只是提供思路。 在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="{$more_pre[url]}" target="_blank">{$more_pre[title]}</a></li> <li>下一篇: <a href="{$more_next[url]}" target="_blank">{$more_next[title]}</a></li> </ul>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询