> php教程 > php手册 > 본문

php 上一篇与下一篇文章代码

WBOY
풀어 주다: 2016-06-13 09:58:11
원래의
1086명이 탐색했습니다.

php教程 上一篇与下一篇文章代码
基本知识:

就是对id对进行order by id desc 或  order by id asc进行排序,然后再判断比当前id> or小于当前文章id的
实例的sql语句如下:

select * from news where id 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.bKjia.c0m');

好了万事俱备了,下面来看一下操作方法
*/


 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  
 $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.bKjia.c0m

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 추천
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿