网站地图    收藏   

主页 > php专栏 > php分页 >

简单实用php mysql分页代码

来源:未知    时间:2014-11-27 22:50 作者:xxadmin 阅读:

[导读] $qh =mysql_query( selectcount(*)asrcntfromtablewhereyour_condition_hereorderbywhatever ); $data =mysql_fetch_array( $qh ); $nr = $data [ rcnt ]; //判断偏移量参数是否传递给了脚本,如果没有就使用默认值0 if ( empty em...

 
  1. $qh=mysql_query("select count(*) as rcnt from table where your_condition_here order by whatever");  
  2. $data=mysql_fetch_array($qh);  
  3. $nr=$data["rcnt"];  
  4. //判断偏移量参数是否传递给了脚本,如果没有就使用默认值0 
  5. if (emptyempty($offset)) 
  6. {  
  7. $offset=0;  
  8. //查询结果(这里是每页20条,但你自己完全可以改变它)  
  9. $result=mysql_query("select id,name,phone from table where your_condition_here order by whatever limit $offset, 20"); 
  10. //显示返回的20条记录  
  11. while ($data=mysql_fetch_array($result))  
  12. //换成你用于显示返回记录的代码 
  13. //下一步,要写出到其它页面的链接  
  14. if(!$offset//如果偏移量是0,不显示前一页的链接  
  15. {  
  16. $preoffset=$offset-20;  
  17. print "<a href="$php_self?offset=$preoffset">前一页</a>&nbsp; ";  
  18. //计算总共需要的页数  
  19. $pages=ceil($nr/20); //$pages变量现在包含所需的页数 
  20. for ($i=1; $i <= $pages$i++)  
  21. {  
  22. $newoffset=20*$i;  
  23. print "<a href="$php_self?offset=$newoffset">$i</a>&nbsp; ";  
  24. //检查是否是最后一页  
  25. if ($pages!=0 && ($newoffset/20)!=$pages)  
  26. //开源代码phpfensi.com 
  27. print "<a href="$php_self?offset=$newoffset">下一页</a>&nbsp; ";  
  28. }
  29.  

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论