最模板 - 外贸网站建设,外贸网站模板

最模板

当前位置: 首页 > 建站教程 > php教程 >

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

时间:2014-06-09 16:39来源: 作者: 点击:
基本知识:就是对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$i

基本知识:就是对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`

  1. CREATE TABLE IF NOT EXISTS `string_find` ( 
  2.   `id` int(4) NOT NULL auto_increment, 
  3.   `charList` varchar(100) default NULL
  4.   PRIMARY KEY  (`id`) 
  5. ) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=7 ; 

导出表中的数据 `string_find`

  1. INSERT INTO `string_find` (`id`, `charList`) VALUES 
  2. (1, '邓先驱者'), 
  3. (2, '邓先驱者'), 
  4. (5, 'fdafdsaf'), 
  5. (6, 'www.vcphp.com'); 

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

  1. */ 
  2.  mysql教程_pconnect('localhost','root','root'or die(mysql_error()); 
  3.  mysql_select_db('cc'); 
  4.  mysql_query("set names 'gbk'");  
  5.  $cid =5;//是你当前文章的编号  
  6.  $sql ="select * from string_find where id>$cid order by id desc limit 0,1"//上一篇文章 
  7.  $sql1 ="select * from string_find where id<$cid order by id asc limit 0,1";//下一篇文章 
  8.  
  9.  $result = mysql_query( $sql ); 
  10.  if( mysql_num_rows( $result ) ) 
  11.  { 
  12.   $rs = mysql_fetch_array( $result ); 
  13.   echo "上一篇".$rs[0]; 
  14.  } 
  15.  else 
  16.  { 
  17.   echo "没有了"
  18.  } 
  19.  
  20.  $result1 = mysql_query( $sql1 ); 
  21.  if( mysql_num_rows( $result1 ) ) 
  22.  { 
  23.   $rs1 = mysql_fetch_array( $result1 ); 
  24.   echo "下一篇".$rs1[0]; 
  25.  } 
  26.  else 
  27.  { 
  28.   echo "没有了"
  29.  } 
(责任编辑:admin)
------分隔线----------------------------
栏目列表
推荐内容
  • php设置时区方法介绍

    php默认时区是欧美国家的所以与我们中国时区相差了整整8小时,下面我来给各位介绍php设置时区...

  • php 判断邮箱地址的正则表达式详解

    在php中我们经常会来利用正则表达式来验证用户输入的信息是不是邮箱地址了,下面我来给大家...

  • php判断变量常量是否存在

    在php中变量类型我们有常用变量与常量,下面我来给大家介绍如何在php中来判断常量与变量是否...

  • PHP中JSON的应用方法

    PHP中JSON的应用方法 如何使用JSON,PHP5.2开始内置了JSON的支持,当然,如果低于这个版本的话,那么市...

  • php面向对象__toString() 用法详解

    本文章来给各位同学介绍一下关于php面向对象__toString() 用法详解,__toString() 方法是自动被调用...

  • PHP编译问题

    这章节搜集了很多编译时会产生的错误情况。 1. 我用匿名CVS得到最新版的源代码包,但没有配置...