微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

php分页代码学习示例分享

代码如下:
PHP
header("content-type:text/html;charset=utf-8");
//数据库连接
$conn = MysqL_connect("localhost","root","111") or die("not connnected : ".MysqL_error());
MysqL_select_db("test",$conn);
MysqL_query("set names utf8");

//查询共有多少行数据
$sql1 = "select count(*) from user";
$ret1 = MysqL_query($sql1);
$row1 = MysqL_fetch_row($ret1);
$tot = $row1[0];

//每页多少行数据
$length = 5;
//总页数
$totpage = ceil($tot / $length);

//当前页数
$page = @$_GET['p'] ? $_GET['p'] : 1;
//limit 下限
$offset = ($page - 1) * $length;

echo "

";
echo "

PHP padding

";
echo "";
echo " echo "";
echo "";
echo "";
echo "

//将查询出来的数据用表格显示
$sql2 = "select * from user order by id limit {$offset},{$length}";
$ret2 = MysqL_query($sql2);
while ($row2 = MysqL_fetch_assoc($ret2)) {
echo " echo " echo " }

echo "

//上一页下一页
$prevpage = $page - 1;
if ($page >= $totpage) {
$nextpage = $totpage;
} else {
$nextpage = $page + 1;
}

//跳转
echo "

上一页|下一页

";
echo "";

核心点:

<1>“$sql2 = "select * from user order by id limit {$offset},{$length}";”,$offset、$length和页数之间的关系。

<2>上一页下一页的获得方式,以及临界点。

原文地址:https://www.jb51.cc/php/25079.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐


IDUSERPASS