基本知识:就是对id对进行order by id desc 或 order by id asc进行排序,然后再判断比当前id > or小于当前文章id的,实例的sql语句如下:
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` (
- `id` int(4) NOT NULL auto_increment,
- `charList` varchar(100) default NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=7 ;
导出表中的数据 `string_find`
- INSERT INTO `string_find` (`id`, `charList`) VALUES
- (1, '邓先驱者'),
- (2, '邓先驱者'),
- (5, 'fdafdsaf'),
- (6, 'www.phpfensi.com');
好了万事俱备了,下面来看一下操作方法:
- */
- mysql教程_pconnect('localhost','root','root') or die(mysql_error());
- mysql_select_db('cc');
- mysql_query("set names 'gbk'");
- $cid =5;//是你当前文章的编号
- $sql ="select * from string_find where id>$cid order by id desc limit 0,1"; //上一篇文章
- $sql1 ="select * from string_find where id<$cid order by id asc limit 0,1";//下一篇文章
- $result = mysql_query( $sql );
- if( mysql_num_rows( $result ) )
- {
- $rs = mysql_fetch_array( $result );
- echo "上一篇".$rs[0];
- }
- else
- {
- echo "没有了";
- }
- $result1 = mysql_query( $sql1 );
- if( mysql_num_rows( $result1 ) )
- {
- $rs1 = mysql_fetch_array( $result1 );
- echo "下一篇".$rs1[0];
- }
- else
- {
- echo "没有了";
- }
波比源码 – 精品源码模版分享 | www.bobi11.com
1. 本站所有资源来源于用户上传和网络,如有侵权请邮件联系站长!
2. 分享目的仅供大家学习和交流,您必须在下载后24小时内删除!
3. 不得使用于非法商业用途,不得违反国家法律。否则后果自负!
4. 本站提供的源码、模板、插件等等其他资源,都不包含技术服务请大家谅解!
5. 如有链接无法下载、失效或广告,请联系管理员处理!
6. 本站资源售价只是赞助,收取费用仅维持本站的日常运营所需!
7. 本站源码并不保证全部能正常使用,仅供有技术基础的人学习研究,请谨慎下载
8. 如遇到加密压缩包,请使用WINRAR解压,如遇到无法解压的请联系管理员!
波比源码 » php 上一篇与下一篇文章代码
波比源码 » php 上一篇与下一篇文章代码