php 上一篇下一篇文章实现代码与原理说明
实现原理: 就是对id对进行order by id desc 或 order by id asc进行排序,然后再判断比当前id> or小于当前文章id的相同栏目的文章。 实例的sql语句如下: $id就是当面文章的id select * from news where id<$id order by id desc limit 0,1 select * from news where id>$id order by id desc limit 0,1 — — 表的结构 `string_find` — CREATE TABLE IF NOT EXISTS `string_find` ( `
用户评论