分页有关问题 求高手帮小弟我看看

WBOY
Release: 2016-06-13 13:29:24
Original
771 people have browsed it

分页问题 求高手帮我看看
[code=PHP][/code]


 
   
  
   
/*连接数据库*/
include("conn.php");
if(isset($_GET['page'])){
$page=$_GET['page'];
}else{
$page=1;
}?>
if($page){
$page_size=4;
$arr="select * from luntanp";
$tt=mysql_query($arr); //执行查询操作
$message_count=mysql_num_rows($tt); //获取查询总数
  $page_count=ceil($message_count/$page_size); //获取总的页数
  $offset=($page-1)*$page_size; 
$query="select * from luntanp where id=$_GET[id] or hid=$id order by id desc limit $offset, $page_size";  
$arr=mysql_query($query,$conn);
}?>/*使用while语句循环mysql_fetch_array()函数返回的数组*/
while($result=mysql_fetch_array($arr)){
?>
 
 
 
 
 
 
 
 
 
 
 
 


   
  } //结束while循环
?>
if($page!=1){
echo "首页";
echo "上一页";
}
if($page echo " 下一页";
echo " 尾页";
}
?>
   
 
作者: 回复时间:
内容:


我单击下一页怎么就不会出来呀 能帮我解决一下吗 我不知道怎么回事 我改不了呀 那个帮我帮我拜托了 单击下一页就一样都没有了 单击尾页也是一样呀

------解决方案--------------------
if($pageecho " 下一页";
echo " 尾页";
}
改成:
if($pageecho " 下一页";
echo " 尾页";
}

这样就ok了
Related labels:
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