博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
php分页
阅读量:5771 次
发布时间:2019-06-18

本文共 630 字,大约阅读时间需要 2 分钟。

hot3.png

##1. 分页原理:

limit offset, sizeoffset:偏移量  offset=(当前页-1)*sizesize:每页显示条数

#2. 排序

order by ‘排序字段’ ‘正序或反序'

3. demo

$doctor=M('freegoods');       $num=I('page','1','intval');//当前页码     $pagesize=I('size','5','intval');//每页显示条数       $count=$doctor->count();//总条数       $sort=I('sort','id');//当         $order=I('order','asc');       $totalpage = ceil($count/$pagesize);//总页数        $offset = ($num-1)*$pagesize;   $sql = "select id,doctorname,post,asktime,skill,storecode,gender,userimg from hx_doctor order by $sort $order  limit $offset,$pagesize ";        $info=$doctor->query($sql);

转载于:https://my.oschina.net/u/2953372/blog/758010

你可能感兴趣的文章
Excel考勤统计要每个人的每天的第一卡和最后一卡
查看>>
Go 简单测试
查看>>
第二阶段冲刺第十天
查看>>
WinForm窗体的创建于传值(1)
查看>>
参数化
查看>>
Get vs Post http://blog.teamtreehouse.com/the-definitive-guide-to-get-vs-post
查看>>
洛谷P1122 最大子树和
查看>>
POJ2513 Colored Sticks
查看>>
python常用数据类型-字典
查看>>
eclipse 插件 最新 eclipse4.x 插件
查看>>
Modbus: 1. Java使用Modbus读取Slave端数据(TCP)
查看>>
web.xml
查看>>
CSUOJ 1217 奇数个的那个数 位运算
查看>>
Win10 将slim加入PYTHONPYTH
查看>>
深入类
查看>>
CentOS 7系统安装配置图解教程
查看>>
CSS选择器
查看>>
Python之路,Day1 - Python基础1
查看>>
SPDY以及HTTP2.0
查看>>
字符串转数字简单代码实现
查看>>