Home > Backend Development > PHP Tutorial > php获取文章上一页与下一页的方法_PHP

php获取文章上一页与下一页的方法_PHP

WBOY
Release: 2016-05-31 18:16:01
Original
877 people have browsed it

本文实例讲述了php获取文章的方法。分享给大家供大家参考。具体方法如下:

今天发现一个站的出现问题,是直接到了本频道最新发布的文章了,按原理应该是文章本身ID的前与后的ID才是上下页吧,下面我来与大家详细讲述一下.

先看个例子:1,2,3,4,5.

假如上面5个是ID了,我要对我们要用order by id asc得出的排序应该是,4,好了原理就这么简.

sql实现方法,代码如下:

:

代码如下:

$sql ="Select 字段 from 表名 where id>3 order by id asc limit 1";

得出的结果与我们想的是一样的,好了最后我把自己以前写的一个函数分享给各位,代码如下:

代码如下:

/*
 
 int $tag 0
 int $fid
*/
 function nextPre($tag=0,$zid,$fid)
 {
  if( $tag )
  {
   $sql ="Select 字段 from 表名 where id   }
  else
  {
   $sql ="Select 字段 from 表名 where id>$fid order by id asc limit 1";
  }
  //$sql = "Select * from 表名 where order by id desc limit 0,10";
  $result =  mysql_query($sql) or die('query error');
  if( mysql_num_rows( $result ) )
  {
   $rs = mysql_fetch_array( $result );
   return "".$rs['title']."";
  }
  else
  {
   return '没有了';
  }
 }

希望本文所述对大家的PHP程序设计有所帮助。

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template