Home > Backend Development > PHP Tutorial > 关于分页出了点问题找不到错在哪里求大神指导

关于分页出了点问题找不到错在哪里求大神指导

WBOY
Release: 2016-06-23 13:27:30
Original
831 people have browsed it

// 全部产品

// 连接数据库
require_once 'conn.php';
$sql="select * from tb_user";

$result=mysql_query($sql);


$num=mysql_num_rows($result);

$pagesize=3;//设定每页的记录数
$pages=ceil($num/$pagesize);//取得总页数
if($pages $page=$_GET[page];//取得传递过来的页数
if($page>$pages){$page=$pages;}//如果传递过来的页数比总页数还大,就让它等于总页数
if($page $kaishi=($page-1)*$pagesize;//为下一步做准备,limit的初始记录
$sql="select * from tb_user order by id desc limit $kaishi,$pagesize";//取得记录从计算出的初始值开始,一共$pagesize条
$result=mysql_query($sql);//取得结果
while($row=mysql_fetch_array($result))
{
 echo '名字:'.$row['usernc'] ;
  echo '
';
}
?>
下面是分页

首页 ">上页 当前第 echo $page;?>页 ">下页 ">尾页

以上是代码 内容的显示没问题 主要是 首页 上页 当前第页 下页 尾页这些点进去没反应


回复讨论(解决方案)

你的 url 怎么是  127.0.0.2/ceshi1.php?page= echo $page-1;?> 呢?
page 不是应该是数字吗?

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template