之前解决的帖子地址
http://bbs.csdn.net/topics/390263234
现在在那个帖子的地址上,又加入了分页的功能
自己把问题想的太简单了。。 以为都是按着sql直接一分就完了,跟分页没关系。。
主要有以下几个问题
1.当点击下一页之后,能正确显示数据库中的内容,但是在日期:<?php echo $date; ?>——NO:<?php echo $officecode; ?>——名称:<?php echo $officename; ?> 这里会显示 echo "没有这样的记录,正在返回确认页面";
等于进入了else的那部分 就会返回write.php页面
2.现在这样的分页的情况就是 每一页都是一个独立的统计页面
比如第一个名字在某一天有15次记录 每页显示10条记录 第一页的10次 会做一次统计 在第二页 做另5次的统计
如果想改成不是每页都统计,而是完全根据名字,来进行统计 应该要如何改写?
总体来说,是不是需要改分页的方法?求详细内容 谢谢
下面是完整代码
<?php
session_start();
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>统计页面</title>
</head>
<body>
<?php
include('conn.php');
$officename=$_POST['officename'];
$date=$_POST['riqi'];
$sql1="select * from record where officename='$officename' and searchtime like '%$riqi%' order by name";
$result1=mysql_query($sql1);
if(mysql_num_rows($result1)!=0){
$row=mysql_fetch_assoc($result1) ;
$officecode=$row['officecode'];
$_SESSION["riqi"]=$_POST['riqi'];
$_SESSION["officename"]=$_POST['officename'];
$_SESSION["officecode"]=$officecode;
}
else{
echo "没有这样的记录,正在返回确认页面";
echo "<meta http-equiv='refresh' content='2;url=confirm.php'>";
}
?>
日期:<?php echo $date; ?>——NO:<?php echo $officecode; ?>——名称:<?php echo $officename; ?>
<form name="form3">
<div align="center">
<table width="1230" height="103" border="0" align="left" cellpadding="0" cellspacing="1" bgcolor="#CCCCCC">
<tr>
<!-- 将要列出的内容-->
<th width="5%" height="38" bgcolor="#E3E3E3" scope="col">编号</th>
<th width="10%" bgcolor="#E3E3E3" scope="col">姓名</th>
<th width="5%" bgcolor="#E3E3E3" scope="col">NO.</th>
<th width="20%" bgcolor="#E3E3E3" scope="col">物件名称</th>
<th width="10%" bgcolor="#E3E3E3" scope="col">行驶距离km</th>
<th width="10%" bgcolor="#E3E3E3" scope="col">行驶时间min</th>
<th width="10%" bgcolor="#E3E3E3" scope="col">作业时间min</th>
<th width="10%" bgcolor="#E3E3E3" scope="col">行驶速度km/h</th>
<th width="10%" bgcolor="#E3E3E3" scope="col">到达时间</th>
<th width="15%" bgcolor="#E3E3E3" scope="col">出发时间</th>
</tr>
<?php
$link=mysql_connect('localhost','root','mysql'); //数据库用户名及数据库密码
mysql_select_db('berecord'); //数据库名称
mysql_query('set names utf8');
$Page_size=10; //设置每页显示个数
$result=mysql_query("select * from record where officecode='$officecode' and searchtime like '%$riqi%' order by name"); //record为表名
$count = mysql_num_rows($result);
$page_count = ceil($count/$Page_size);
$init = 1;
$page_len = 7;
$max_p=$page_count;
$pages=$page_count;
//判断当前页码
if(empty($_GET['page'])||$_GET['page']<0){
$page=1;
}
else{
$page=$_GET['page'];