下面看如何取上一条记录:
$id=$_GET[id];//当前ID记录
$sql="select * from table where id<'$id' order by id desc limit 1";
这条SQL语句就是取上一条记录,当然,你可以通过limit 1,修改这里得到多几条记录.
然后取下一条也比较简单了:
$sql="select * from table where id>'$id' order by id asc limit 1";(默认就是升序的)
所以:$sql="select * from table where id>'$id' order by id limit 1"; 就好了