A5下载站:努力做内容最丰富最安全的下载站! 网站地图最新更新下载排行专题软件发布

热门软件

地铁跑酷

冒险迷岛

全民迷宫

连连消大作战

小河狸创客

阿里健康医鹿

支付宝app

番薯小说

MOMO陌陌

虾米音乐app

位置导航:A5下载 > 源码技巧 > 父类数据

php mysql分页代码实例教程

时间:2015-06-03 17:31来源:未知作者:sa浏览:42
php mysql分页代码实例教程,感觉还不错,就分享出来给大家,适合新手学习。希望对你们有所帮助 $qh=mysql_query(select count(*) as rcnt from table where your_condition_here order by whatever); $data=mysql_fetch_array($qh); $nr=$data[rcnt]; //判……

php mysql分页代码实例教程,感觉还不错,就分享出来给大家,适合新手学习。希望对你们有所帮助

$qh=mysql_query("select count(*) as rcnt from table where your_condition_here order by whatever");

$data=mysql_fetch_array($qh);

$nr=$data["rcnt"];

//判断偏移量参数是否传递给了脚本,如果没有就使用默认值0

if (emptyempty($offset))

{

$offset=0;

}

//查询结果(这里是每页20条,但你自己完全可以改变它)

$result=mysql_query("select id,name,phone from table where your_condition_here order by whatever limit $offset, 20");

//显示返回的20条记录

while ($data=mysql_fetch_array($result))

{

//换成你用于显示返回记录的代码

}

//下一步,要写出到其它页面的链接

if(!$offset) //如果偏移量是0,不显示前一页的链接

{

$preoffset=$offset-20;

print "<a href="$php_self?offset=$preoffset">前一页</a>&nbsp; ";

}

//计算总共需要的页数

$pages=ceil($nr/20); //$pages变量现在包含所需的页数
for ($i=1; $i <= $pages; $i++)

{

$newoffset=20*$i;

print "<a href="$php_self?offset=$newoffset">$i</a>&nbsp; ";

}

//检查是否是最后一页

if ($pages!=0 && ($newoffset/20)!=$pages)

{ //开源代码www.bcty365.com

print "<a href="$php_self?offset=$newoffset">下一页</a>&nbsp; ";

}