php中分页显示文章标题_PHP

WBOY
Release: 2016-06-01 12:31:30
Original
1065 people have browsed it

php中文章标题很多的情况下怎样才能分页显示呢?

  下面根据本人的体会把主要代码公开,希望对初学网友有所帮助.

$page_size=10;(每页显示数量)

$sql='select count(*) as rnt from mydbf';

$sql .= ' order by mytime desc ';

$qh=mysql_query($sql);

$data=mysql_fetch_array($qh);

$nr=$data["cnt"];

$pages=intval($nr/$page_size);

if($nr%$page_size) $pages ;

if(empty($page))

{

$page=1;

$offset=0;

}

else

{

$offset=$page*$page_size-$page_size;

}

?>



 页



}

?>

Related labels:
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