×

漂亮的php分页代码

漂亮的php分页代码(漂亮的php分页代码怎么写)

admin admin 发表于2023-04-04 06:30:09 浏览50 评论0

抢沙发发表评论

本文目录一览:

求一段php分页代码,就像网上用于图书的分页,请教各位高手

?php

//通用的分页,输出样式根据自己喜欢样式更改就可以了

/*

* Created on 2006-11-16

*

* To change the template for this generated file go to

* Window - Preferences - PHPeclipse - PHP - Code Templates

*/

//为了避免重复包含文件而造成错误,加了判断函数是否存在的条件:

if(!function_exists(page))

{

function page($sql,$url=''){

//定义几个全局变量:

//$page:当前页码;

//$begincount:查询的起始项,limit的第一个参数;

//$pagenav:分页条

global $page,$begincount,$pagenav,$rows;

//$totle:信息总数;

//$rows:每页显示信息数,这里设置为默认是5;

//$url:分页导航中的链接,除了加入不同的查询信息“page”外的部分都与这个URL相同。

$rows = 1;

//$pagenum = $displaypg;

$result = mysql_query($sql) or die("Could not query:" . mysql_error());

$total = mysql_num_rows($result);

if(!$page) $page=1;

//在URL后加page查询信息

$url.="page";

$lastpg=ceil($total/$rows); //最后页,也是总页数

//$page=min($lastpg,$page);

$prepg=$page-1; //上一页

$nextpg=($page==$lastpg ? 0 : $page+1); //下一页

$begincount=($page-1)*$rows;

//如果只有一页则跳出函数:

if($lastpg1) return false;

//开始分页导航条代码:

$pagenav=" a href='$url=1'首页/a ";

if($prepg)

$pagenav.=" a href='$url=$prepg'上一页/a ";

else

$pagenav.=" 上一页 ";

if($nextpg)

$pagenav.=" a href='$url=$nextpg'下一页/a ";

else

$pagenav.=" 下一页 ";

$pagenav.=" a href='$url=$lastpg'尾页/a ";

//下拉跳转列表,循环列出所有页码:

$pagenav.=" 第 select name='topage' size='1' onchange='window.location=\"$url=\"+this.value'";

for($i=1;$i=$lastpg;$i++)

{

if($i==$page)

$pagenav.="option value='$i' selected$i/option";

else

$pagenav.="option value='$i'$i/option";

}

$pagenav.="/select 页,共 $lastpg 页, ";

$pagenav.="共 $total 条记录 ";

}

return $pagenav;

}

?

php分页代码 怎么写

 Web开发是今后分布式程式开发的主流,通常的web开发都要涉及到与数据库打交道,客户端从服务器端读取通常都是以分页的形式来显示,一页一页的阅读起来既方便又美观。所以说写分页程序是web开发的一个重要组成部分,在这里,我们共同来研究分页程序的编写。 -漂亮的php分页代码

一、分页程序的原理

分页程序有两个非常重要的参数:每页显示几条记录($pagesize)和当前是第几页($page)。有了这两个参数就可以很方便的写出分页程序,我们以MySql数据库作为数据源,在mysql里如果要想取出表内某段特定内容可以使用的 T-SQL语句:select * from table limit offset,rows来实现。这里的offset是记录偏移量,它的计算方法是offset=$pagesize*($page-1),rows是要显示的记录条数,这里就是$page。也就是说select * from table limit 10,10这条语句的意思是取出表里从第11条记录开始的20条记录。-漂亮的php分页代码

二、主要代码解析

$pagesize=10; //设置每一页显示的记录数

$conn=mysql_connect("localhost","root",""); //连接数据库

$rs=mysql_query("select count(*) from tb_product",$conn); //取得记录总数$rs

$myrow = mysql_fetch_array($rs);

$numrows=$myrow[0];

//计算总页数

$pages=intval($numrows/$pagesize);

//判断页数设置

if (isset($_GET['page'])){

 $page=intval($_GET['page']);

}

else{

 $page=1; //否则,设置为第一页

}

三、创建用例用表myTable

create table myTable(id int NOT NULL auto_increment,news_title varchar(50),news_cont text,add_time datetime,PRIMARY KEY(id))-漂亮的php分页代码

四、完整代码

<html>

<head>

<title>php分页示例</title>

<meta http-equiv="Content-Type" content="text/html; charset=gb2312">

</head>

<body>

<?php

 $conn=mysql_connect("localhost","root","");

 //设定每一页显示的记录数

 $pagesize=1;

 mysql_select_db("mydata",$conn);

 //取得记录总数$rs,计算总页数用

 $rs=mysql_query("select count(*) from tb_product",$conn);

 $myrow = mysql_fetch_array($rs);

 $numrows=$myrow[0];

 //计算总页数

 $pages=intval($numrows/$pagesize);

 if ($numrows%$pagesize)

$pages++;

 //设置页数

 if (isset($_GET['page'])){

$page=intval($_GET['page']);

 }

 else{

//设置为第一页

$page=1;

 }

 //计算记录偏移量

 $offset=$pagesize*($page - 1);

 //读取指定记录数

 $rs=mysql_query("select * from myTable order by id desc limit $offset,$pagesize",$conn);

 if ($myrow = mysql_fetch_array($rs))

 {

$i=0;

?>

<table border="0" width="80%">

<tr>

 <td width="50%" bgcolor="#E0E0E0">

<p align="center">标题</td>

<td width="50%" bgcolor="#E0E0E0">

<p align="center">发布时间</td>

</tr>

<?php

 do {

$i++;

?>

<tr>

 <td width="50%"><?=$myrow["news_title"]?></td>

 <td width="50%"><?=$myrow["news_cont"]?></td>

</tr>

 <?php

 }

 while ($myrow = mysql_fetch_array($rs));

echo "</table>";

}

echo "<div align='center'>共有".$pages."页(".$page."/".$pages.")";

for ($i=1;$i< $page;$i++)

 echo "<a href='fenye.php?page=".$i."'>[".$i ."]</a> ";

 echo "[".$page."]";

 for ($i=$page+1;$i<=$pages;$i++)

echo "<a href='fenye.php?page=".$i."'>[".$i ."]</a> ";

echo "</div>";

 ?>

</body>

</html>

五、总结

本例代码在windows2000 server+php4.4.0+mysql5.0.16上运行正常。该示例显示的分页格式是[1][2][3]…这样形式。假如想显示成“首页 上一页 下一页 尾页”这样形式,请加入以下代码:-漂亮的php分页代码

$first=1;

$prev=$page-1;

$next=$page+1;

$last=$pages;

if ($page > 1)

{

 echo "<a href='fenye.php?page=".$first."'>首页</a> ";

 echo "<a href='fenye.php?page=".$prev."'>上一页</a> ";

}

if ($page < $pages)

{

 echo "<a href='fenye.php?page=".$next."'>下一页</a>

 echo "<a href='fenye.php?page=".$last."'>尾页</a> ";

}

其实,写分页显示代码是很简单的,只要掌握了它的工作原理。希望这篇文章能够带给那些需要这方面程序web程序员的帮助。

php分页代码

?php

// 首页 上一页 1 2 3 4 5 下一页 末页

class StrPage{

private $file;//文件内容

private $current;//当前页

private $totalPage;//总的页数

private $url;//url地址

private $pageLen;//每页显示的内容长度

function __construct($file,$len=500){

$this-file = file_get_contents($file);

$this-current=isset($_GET['page'])?$_GET['page']:1;

$this-pageLen = $len;

$this-totalPage = $this-getTotalPage();

$this-url= $this-getUrl();

}

private function getTotalPage(){

return ceil(strlen($this-file)/$this-pageLen);

}

private function getUrl(){

$url =parse_url($_SERVER['REQUEST_URI']);

parse_str($url['query'],$queryArr);

unset($queryArr['page']);

$queryStr = http_build_query($queryArr);

return $url['path'].'?'.$queryStr.'page=';

}

private function first(){

if($this-current1)return "a href='".$this-url."1'首页/a";

}

private function pre(){

if($this-current1)return "a href='".$this-url.($this-current-1)."'上一页/a";

}

private function next(){

if($this-current$this-totalPage)return "a href='".$this-url.($this-current+1)."'下一页/a";

}

private function end(){

if($this-current$this-totalPage) return "a href='".$this-url.$this-totalPage."'末页/a";

}

private function pageList(){

for ($i=1;$i=$this-totalPage;$i++){

if($i==$this-current){

$pageListStr.="span style='font-size:20px;color:#f00'".$i."/span ";

}else{

$pageListStr.="a href='".$this-url.$i."'".$i." /a";

}

}

return $pageListStr;

}

public function pageStyle($style=1){

switch ($style){

case 1:

return "共有".$this-totalPage."页".$this-first().$this-pre().$this-pageList().$this-next().$this-end();-漂亮的php分页代码

break;

case 2;

return $this-pageList();

break;

}

}

public function getContents(){

$prePageLen = strlen($this-subStrs($this-current-1));

$currentPageLen = strlen($this-subStrs($this-current));

return substr($this-file, $prePageLen,$currentPageLen-$prePageLen);

}

private function subStrs($page){

$len= $page*$this-pageLen;

for ($i = 0; $i $len; $i++) {

if(ord(substr($this-file,$i,1))0xa0){

$string.=substr($this-file,$i,2);

$i++;

}else{

$string.=substr($this-file,$i,1);

}

}

return $string;

}

}

$php = new StrPage('75.txt',2000);

echo "div style='font-size:14px;line-height:1.8em;color:#666;padding:6px;width:960px;height:450px;'".$php-getContents()."/div";-漂亮的php分页代码

echo "div style='border:solid 1px #ccc;font-size:14px;color:#333'";

echo $php-pageStyle();

echo "/div";