컨트롤러 코드:
//다음 글
$after = Db('shcontent')->where('id','>',$id)->order('id asc ')- >limit('1')->select();
//이전 기사
$nex = Db('shcontent')->where('id','<' ,$id)- >order('id desc')->limit('1')->select()
코드 보기:
<!--다음 기사-->
{if 조건=" $after"}
{foreach $after as $va}
<a style="float: right;" href="{:url('index/index/shenghuo_content',[" id"=>$ val["id"]])}">다음 기사: {$va.title}</a>
{/foreach}
{else/}
<a style="float: right; " href="#">다음 게시물: 없음</a>
{/if}
<!--이전 게시물-->
{if Condition="$nex"}
{foreach $va}
<a style="float: right;" href="{:url('index/index/shenghuo_content',["id"= >$val["id"]]) }">이전 게시물: {$va.title}</a>
{/foreach}
{else/}
<a style=" float: right;" href="#"> 이전 게시물: 없음</a>
{/if}
<a style="float: right;" href="#">이전 글: 더 이상</a>
기사를 찾으려면 find $nex = Db('shcontent')->where('id','<',$id)->order('id desc')->limit를 사용해야 합니다. ( '1')->찾기();
해결되었습니다. ["id"=>$val["id"]+1] 또는 ["id"=>$val["id"]-1]을 사용하세요.