1. 首页
  2. 数据库
  3. 其它
  4. php 上一篇下一篇文章实现代码与原理说明

php 上一篇下一篇文章实现代码与原理说明

上传者: 2020-12-31 13:31:53上传 PDF文件 45.87KB 热度 17次
实现原理: 就是对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` ( `
用户评论