php做条件查询时的分页传值问题
分页查询的时候第一页是按条件查的,一翻页就出现问题了,查询条件就丢失了,查到的就是不含where条件限制的内容.这个怎么解决啊。求大侠解决~~~您说的:始终用一个变量保存...
分页查询的时候第一页是按条件查的,一翻页就出现问题了,查询条件就丢失了,查到的就是不含where条件限制的内容.这个怎么解决啊。 求大侠解决~~~您说的:始终用一个变量保存查询条件~在代码里就把这个变量分配到页数后面不就行了 ?这个具体怎么实现啊,谢谢··~~~
展开
4个回答
展开全部
你这程序做得真不错,但是还是乱啊,我测试都没办法测试。提出个问题: $sel=$_POST['select'];
$sel2=$_POST['select2'];
你这样接收了两个变量,你这两个变量在每次刷新页数输出查询结果时,到底如何传递的 ?我发现你根本没有传递这两个变量;你测试下: $sel=$_POST['select'];
$sel2=$_POST['select2'];echo '<br/>$sel'.$sel.'<br/>';echo '$sel2'.$sel2.'<br/>'; 建议:一开始使用post,已经输入后使用get,该select与select2通过html传输。再则,你的查询条件:年代,类别。(我不知道这两个是不是查询条件,看不出来。。。。)是如何输入的?等你说明下你到底想实现什么样的功能再贴上来吧哥哥。。。。。我帮你改了下,不知道能不能运行,自己测试下吧: <?php
include("conn.php");
if(isset($_POST['select']))//这里修改下
$sel=$_POST['select'];//这里修改下
else//这里修改下
$sel = $_GET['select'];//这里修改下
if(isset($_POST['select2']))//这里修改下
$sel2=$_POST['select2'];//这里修改下
else//这里修改下
$sel2 = $_GET['select2'];//这里修改下
if($sel=='' and $sel2=='')//这里修改下
$sql="select * from test";//这里修改下
elseif($sel!='' and $sel2=='')//这里修改下
$sql="select * from test where leibie like '%$sel%'";
elseif($sel=='' and $sel2!='')//这里修改下
$sql="select * from test where niandai like '%$sel2%'";
else
$sql="select * from test where leibie like '%$sel%' and niandai like '%$sel2%' ";
$result=mysql_query($sql);
$total=mysql_num_rows($result);
include("pageft.php");
pageft($total,10);
$info=mysql_query("$sql limit $firstcount,$displaypg");
if(!$info)
echo '<font size=6 color=red ><p align="center">没有您所要查找的内容,请重新查找!</p></font>';
?> <table width="655" height="40" border="0" align="center">
<tr>
<td width="680" align="right"><span class="STYLE5 STYLE7"><?php if($info) echo $pagenav;?>
</span></td>
</tr>
</table>
<table width="847" height="48" border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="#000000">
<tr>
<td width="86" align="center"><span class="STYLE1 STYLE8">名称</span></td>
<td width="85" align="center"><span class="STYLE1 STYLE9">年代</span></td>
<td width="83" align="center"><span class="STYLE1 STYLE8">类别</span></td>
<td width="495" align="center"><span class="STYLE1 STYLE13 STYLE11">文物简介</span></td>
<td width="86" align="center"><span class="STYLE1 STYLE11 STYLE13">图片</span></td>
</tr>
</table>
<?php
if($info)
while($row=mysql_fetch_array($info)){
$m=$m+1;
?>
<table width="844" height="51" border="1" align="center" cellspacing="0">
<tr>
<td width="86" align="center"><?php echo $m,"-",$row[name_db];?></td>
<td width="83" align="center"><?php echo $row[niandai];?></td>
<td width="81" align="center"><?php echo $row[leibie];?></td>
<td width="502" align="left"><?php echo $row[remark];?></td>
<td width="80" align="center"><a href="../images/<?php echo $row[image_db];?> "target="_blank"><img src="../images/<?php echo $row [image_db];?>"width='80' height='80' /></td>
</tr>
</table>
<?php } ; ?>
<table width="838" height="75" border="0" align="center">
<tr>
<td width="824" align="center" class="STYLE5 STYLE7"> <?php if($info) echo $pagenav;?></td>
</tr>
</table></body>
</html>
下面的是分页代码<?php
//为了避免重复包含文件而造成错误,加了判断函数是否存在的条件:
if(!function_exists(pageft)){
//定义函数pageft(),三个参数的含义为:
//$totle:信息总数;
//$displaypg:每页显示信息数
//$url:分页导航中的链接,除了加入不同的查询信息“page”外的部分都与这个URL相同。
// 默认值本该设为本页URL(即$_SERVER["REQUEST_URI"]),但设置默认值的右边只能为常量,所以该默认值设为空字符串,在函数内部再设置为本页URL。
function pageft($totle,$displaypg=10,$url=''){//定义几个全局变量:
//$page:当前页码;
//$firstcount:(数据库)查询的起始项;
//$pagenav:页面导航条代码,函数内部并没有将它输出;
//$_SERVER:读取本页URL“$_SERVER["REQUEST_URI"]”所必须。
global $m,$page,$firstcount,$pagenav,$_SERVER;//为使函数外部可以访问这里的“$displaypg”,将它也设为全局变量。注意一个变量重新定义为全局变量后,原值被覆盖,所以这里给它重新赋值。
$GLOBALS["displaypg"]=$displaypg;if(!$page) $page=1;
//如果$url使用默认,即空值,则赋值为本页URL:
if(!$url){ $url=$_SERVER["REQUEST_URI"];}
//URL分析:
$parse_url=parse_url($url);
$url_query=$parse_url["query"]; //单独取出URL的查询字串
if($url_query){
//因为URL中可能包含了页码信息,我们要把它去掉,以便加入新的页码信息。
//这里用到了正则表达式
$url_query=ereg_replace("(^|&)page=$page","",$url_query);//将处理后的URL的查询字串替换原来的URL的查询字串:
$url=str_replace($parse_url["query"],$url_query,$url);//在URL后加page查询信息,但待赋值:
if($url_query)
$url.="&page"; else $url.="page";
}else {
$url.="?page";
}
$lastpg=ceil($totle/$displaypg); //最后页,也是总页数
$page=min($lastpg,$page);
$prepg=$page-1; //上一页
$nextpg=($page==$lastpg ? 0 : $page+1); //下一页$firstcount=($page-1)*$displaypg;//开始分页导航条代码:
$m=$firstcount;
$pagenav="显示第 <b>".($totle?($firstcount+1):0)."</b>-<b>".min($firstcount+$displaypg,$totle)."</b> 条记录,
共 $totle 条记录<br>";//如果只有一页则跳出函数:
if($lastpg<=1) return false;
echo '<br/>$url'.$url.'<br/>';
if($prepg) $pagenav.=" <a href='$url=1&select=$sel&select2=$sel2'>首页</a> "; else $pagenav.="首页 ";//这里修改下
if($prepg) $pagenav.=" <a href='$url=$prepg&select=$sel&select2=$sel2'>上一页</a> "; else $pagenav.="上一页 ";//这里修改下
if($nextpg) $pagenav.=" <a href='$url=$nextpg&select=$sel&select2=$sel2'>下一页</a> "; else $pagenav.="下一页 ";//这里修改下
if($nextpg) $pagenav.=" <a href='$url=$lastpg&select=$sel&select2=$sel2'>末页</a> "; else $pagenav.="末页 ";//这里修改下//下拉跳转列表,循环列出所有页码:
$pagenav.="转<select name='topage' size='1' onchange='window.location=\"$url=\"+this.value&select=$sel&select2=$sel2'>\n";//这里修改下
for($i=1;$i<=$lastpg;$i++){
if($i==$page) $pagenav.="<option value='$i' selected>$i</option>\n";
else $pagenav.="<option value='$i'>$i</option>\n";
}
$pagenav.="</select> 页,共 $lastpg 页";
}
}
?>
$sel2=$_POST['select2'];
你这样接收了两个变量,你这两个变量在每次刷新页数输出查询结果时,到底如何传递的 ?我发现你根本没有传递这两个变量;你测试下: $sel=$_POST['select'];
$sel2=$_POST['select2'];echo '<br/>$sel'.$sel.'<br/>';echo '$sel2'.$sel2.'<br/>'; 建议:一开始使用post,已经输入后使用get,该select与select2通过html传输。再则,你的查询条件:年代,类别。(我不知道这两个是不是查询条件,看不出来。。。。)是如何输入的?等你说明下你到底想实现什么样的功能再贴上来吧哥哥。。。。。我帮你改了下,不知道能不能运行,自己测试下吧: <?php
include("conn.php");
if(isset($_POST['select']))//这里修改下
$sel=$_POST['select'];//这里修改下
else//这里修改下
$sel = $_GET['select'];//这里修改下
if(isset($_POST['select2']))//这里修改下
$sel2=$_POST['select2'];//这里修改下
else//这里修改下
$sel2 = $_GET['select2'];//这里修改下
if($sel=='' and $sel2=='')//这里修改下
$sql="select * from test";//这里修改下
elseif($sel!='' and $sel2=='')//这里修改下
$sql="select * from test where leibie like '%$sel%'";
elseif($sel=='' and $sel2!='')//这里修改下
$sql="select * from test where niandai like '%$sel2%'";
else
$sql="select * from test where leibie like '%$sel%' and niandai like '%$sel2%' ";
$result=mysql_query($sql);
$total=mysql_num_rows($result);
include("pageft.php");
pageft($total,10);
$info=mysql_query("$sql limit $firstcount,$displaypg");
if(!$info)
echo '<font size=6 color=red ><p align="center">没有您所要查找的内容,请重新查找!</p></font>';
?> <table width="655" height="40" border="0" align="center">
<tr>
<td width="680" align="right"><span class="STYLE5 STYLE7"><?php if($info) echo $pagenav;?>
</span></td>
</tr>
</table>
<table width="847" height="48" border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="#000000">
<tr>
<td width="86" align="center"><span class="STYLE1 STYLE8">名称</span></td>
<td width="85" align="center"><span class="STYLE1 STYLE9">年代</span></td>
<td width="83" align="center"><span class="STYLE1 STYLE8">类别</span></td>
<td width="495" align="center"><span class="STYLE1 STYLE13 STYLE11">文物简介</span></td>
<td width="86" align="center"><span class="STYLE1 STYLE11 STYLE13">图片</span></td>
</tr>
</table>
<?php
if($info)
while($row=mysql_fetch_array($info)){
$m=$m+1;
?>
<table width="844" height="51" border="1" align="center" cellspacing="0">
<tr>
<td width="86" align="center"><?php echo $m,"-",$row[name_db];?></td>
<td width="83" align="center"><?php echo $row[niandai];?></td>
<td width="81" align="center"><?php echo $row[leibie];?></td>
<td width="502" align="left"><?php echo $row[remark];?></td>
<td width="80" align="center"><a href="../images/<?php echo $row[image_db];?> "target="_blank"><img src="../images/<?php echo $row [image_db];?>"width='80' height='80' /></td>
</tr>
</table>
<?php } ; ?>
<table width="838" height="75" border="0" align="center">
<tr>
<td width="824" align="center" class="STYLE5 STYLE7"> <?php if($info) echo $pagenav;?></td>
</tr>
</table></body>
</html>
下面的是分页代码<?php
//为了避免重复包含文件而造成错误,加了判断函数是否存在的条件:
if(!function_exists(pageft)){
//定义函数pageft(),三个参数的含义为:
//$totle:信息总数;
//$displaypg:每页显示信息数
//$url:分页导航中的链接,除了加入不同的查询信息“page”外的部分都与这个URL相同。
// 默认值本该设为本页URL(即$_SERVER["REQUEST_URI"]),但设置默认值的右边只能为常量,所以该默认值设为空字符串,在函数内部再设置为本页URL。
function pageft($totle,$displaypg=10,$url=''){//定义几个全局变量:
//$page:当前页码;
//$firstcount:(数据库)查询的起始项;
//$pagenav:页面导航条代码,函数内部并没有将它输出;
//$_SERVER:读取本页URL“$_SERVER["REQUEST_URI"]”所必须。
global $m,$page,$firstcount,$pagenav,$_SERVER;//为使函数外部可以访问这里的“$displaypg”,将它也设为全局变量。注意一个变量重新定义为全局变量后,原值被覆盖,所以这里给它重新赋值。
$GLOBALS["displaypg"]=$displaypg;if(!$page) $page=1;
//如果$url使用默认,即空值,则赋值为本页URL:
if(!$url){ $url=$_SERVER["REQUEST_URI"];}
//URL分析:
$parse_url=parse_url($url);
$url_query=$parse_url["query"]; //单独取出URL的查询字串
if($url_query){
//因为URL中可能包含了页码信息,我们要把它去掉,以便加入新的页码信息。
//这里用到了正则表达式
$url_query=ereg_replace("(^|&)page=$page","",$url_query);//将处理后的URL的查询字串替换原来的URL的查询字串:
$url=str_replace($parse_url["query"],$url_query,$url);//在URL后加page查询信息,但待赋值:
if($url_query)
$url.="&page"; else $url.="page";
}else {
$url.="?page";
}
$lastpg=ceil($totle/$displaypg); //最后页,也是总页数
$page=min($lastpg,$page);
$prepg=$page-1; //上一页
$nextpg=($page==$lastpg ? 0 : $page+1); //下一页$firstcount=($page-1)*$displaypg;//开始分页导航条代码:
$m=$firstcount;
$pagenav="显示第 <b>".($totle?($firstcount+1):0)."</b>-<b>".min($firstcount+$displaypg,$totle)."</b> 条记录,
共 $totle 条记录<br>";//如果只有一页则跳出函数:
if($lastpg<=1) return false;
echo '<br/>$url'.$url.'<br/>';
if($prepg) $pagenav.=" <a href='$url=1&select=$sel&select2=$sel2'>首页</a> "; else $pagenav.="首页 ";//这里修改下
if($prepg) $pagenav.=" <a href='$url=$prepg&select=$sel&select2=$sel2'>上一页</a> "; else $pagenav.="上一页 ";//这里修改下
if($nextpg) $pagenav.=" <a href='$url=$nextpg&select=$sel&select2=$sel2'>下一页</a> "; else $pagenav.="下一页 ";//这里修改下
if($nextpg) $pagenav.=" <a href='$url=$lastpg&select=$sel&select2=$sel2'>末页</a> "; else $pagenav.="末页 ";//这里修改下//下拉跳转列表,循环列出所有页码:
$pagenav.="转<select name='topage' size='1' onchange='window.location=\"$url=\"+this.value&select=$sel&select2=$sel2'>\n";//这里修改下
for($i=1;$i<=$lastpg;$i++){
if($i==$page) $pagenav.="<option value='$i' selected>$i</option>\n";
else $pagenav.="<option value='$i'>$i</option>\n";
}
$pagenav.="</select> 页,共 $lastpg 页";
}
}
?>
2013-06-26
展开全部
你这程序做得真不错,但是还是乱啊,我测试都没办法测试。提出个问题: $sel=$_POST['select'];
$sel2=$_POST['select2'];
你这样接收了两个变量,你这两个变量在每次刷新页数输出查询结果时,到底如何传递的 ?我发现你根本没有传递这两个变量;你测试下: $sel=$_POST['select'];
$sel2=$_POST['select2'];echo '<br/>$sel'.$sel.'<br/>';echo '$sel2'.$sel2.'<br/>'; 建议:一开始使用post,已经输入后使用get,该select与select2通过html传输。再则,你的查询条件:年代,类别。(我不知道这两个是不是查询条件,看不出来。。。。)是如何输入的?等你说明下你到底想实现什么样的功能再贴上来吧哥哥。。。。。我帮你改了下,不知道能不能运行,自己测试下吧: <?php
include("conn.php");
if(isset($_POST['select']))//这里修改下
$sel=$_POST['select'];//这里修改下
else//这里修改下
$sel = $_GET['select'];//这里修改下
if(isset($_POST['select2']))//这里修改下
$sel2=$_POST['select2'];//这里修改下
else//这里修改下
$sel2 = $_GET['select2'];//这里修改下
if($sel=='' and $sel2=='')//这里修改下
$sql="select * from test";//这里修改下
elseif($sel!='' and $sel2=='')//这里修改下
$sql="select * from test where leibie like '%$sel%'";
elseif($sel=='' and $sel2!='')//这里修改下
$sql="select * from test where niandai like '%$sel2%'";
else
$sql="select * from test where leibie like '%$sel%' and niandai like '%$sel2%' ";
$result=mysql_query($sql);
$total=mysql_num_rows($result);
include("pageft.php");
pageft($total,10);
$info=mysql_query("$sql limit $firstcount,$displaypg");
if(!$info)
echo '<font size=6 color=red ><p align="center">没有您所要查找的内容,请重新查找!</p></font>';
?> <table width="655" height="40" border="0" align="center">
<tr>
<td width="680" align="right"><span class="STYLE5 STYLE7"><?php if($info) echo $pagenav;?>
</span></td>
</tr>
</table>
<table width="847" height="48" border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="#000000">
<tr>
<td width="86" align="center"><span class="STYLE1 STYLE8">名称</span></td>
<td width="85" align="center"><span class="STYLE1 STYLE9">年代</span></td>
<td width="83" align="center"><span class="STYLE1 STYLE8">类别</span></td>
<td width="495" align="center"><span class="STYLE1 STYLE13 STYLE11">文物简介</span></td>
<td width="86" align="center"><span class="STYLE1 STYLE11 STYLE13">图片</span></td>
</tr>
</table>
<?php
if($info)
while($row=mysql_fetch_array($info)){
$m=$m+1;
?>
<table width="844" height="51" border="1" align="center" cellspacing="0">
<tr>
<td width="86" align="center"><?php echo $m,"-",$row[name_db];?></td>
<td width="83" align="center"><?php echo $row[niandai];?></td>
<td width="81" align="center"><?php echo $row[leibie];?></td>
<td width="502" align="left"><?php echo $row[remark];?></td>
<td width="80" align="center"><a href="../images/<?php echo $row[image_db];?> "target="_blank"><img src="../images/<?php echo $row [image_db];?>"width='80' height='80' /></td>
</tr>
</table>
<?php } ; ?>
<table width="838" height="75" border="0" align="center">
<tr>
<td width="824" align="center" class="STYLE5 STYLE7"> <?php if($info) echo $pagenav;?></td>
</tr>
</table></body>
</html>
下面的是分页代码<?php
//为了避免重复包含文件而造成错误,加了判断函数是否存在的条件:
if(!function_exists(pageft)){
//定义函数pageft(),三个参数的含义为:
//$totle:信息总数;
//$displaypg:每页显示信息数
//$url:分页导航中的链接,除了加入不同的查询信息“page”外的部分都与这个URL相同。
// 默认值本该设为本页URL(即$_SERVER["REQUEST_URI"]),但设置默认值的右边只能为常量,所以该默认值设为空字符串,在函数内部再设置为本页URL。
function pageft($totle,$displaypg=10,$url=''){//定义几个全局变量:
//$page:当前页码;
//$firstcount:(数据库)查询的起始项;
//$pagenav:页面导航条代码,函数内部并没有将它输出;
//$_SERVER:读取本页URL“$_SERVER["REQUEST_URI"]”所必须。
global $m,$page,$firstcount,$pagenav,$_SERVER;//为使函数外部可以访问这里的“$displaypg”,将它也设为全局变量。注意一个变量重新定义为全局变量后,原值被覆盖,所以这里给它重新赋值。
$GLOBALS["displaypg"]=$displaypg;if(!$page) $page=1;
//如果$url使用默认,即空值,则赋值为本页URL:
if(!$url){ $url=$_SERVER["REQUEST_URI"];}
//URL分析:
$parse_url=parse_url($url);
$url_query=$parse_url["query"]; //单独取出URL的查询字串
if($url_query){
//因为URL中可能包含了页码信息,我们要把它去掉,以便加入新的页码信息。
//这里用到了正则表达式
$url_query=ereg_replace("(^|&)page=$page","",$url_query);//将处理后的URL的查询字串替换原来的URL的查询字串:
$url=str_replace($parse_url["query"],$url_query,$url);//在URL后加page查询信息,但待赋值:
if($url_query)
$url.="&page"; else $url.="page";
}else {
$url.="?page";
}
$lastpg=ceil($totle/$displaypg); //最后页,也是总页数
$page=min($lastpg,$page);
$prepg=$page-1; //上一页
$nextpg=($page==$lastpg ? 0 : $page+1); //下一页$firstcount=($page-1)*$displaypg;//开始分页导航条代码:
$m=$firstcount;
$pagenav="显示第 <b>".($totle?($firstcount+1):0)."</b>-<b>".min($firstcount+$displaypg,$totle)."</b> 条记录,
共 $totle 条记录<br>";//如果只有一页则跳出函数:
if($lastpg<=1) return false;
echo '<br/>$url'.$url.'<br/>';
if($prepg) $pagenav.=" <a href='$url=1&select=$sel&select2=$sel2'>首页</a> "; else $pagenav.="首页 ";//这里修改下
if($prepg) $pagenav.=" <a href='$url=$prepg&select=$sel&select2=$sel2'>上一页</a> "; else $pagenav.="上一页 ";//这里修改下
if($nextpg) $pagenav.=" <a href='$url=$nextpg&select=$sel&select2=$sel2'>下一页</a> "; else $pagenav.="下一页 ";//这里修改下
if($nextpg) $pagenav.=" <a href='$url=$lastpg&select=$sel&select2=$sel2'>末页</a> "; else $pagenav.="末页 ";//这里修改下//下拉跳转列表,循环列出所有页码:
$pagenav.="转<select name='topage' size='1' onchange='window.location=\"$url=\"+this.value&select=$sel&select2=$sel2'>\n";//这里修改下
for($i=1;$i<=$lastpg;$i++){
if($i==$page) $pagenav.="<option value='$i' selected>$i</option>\n";
else $pagenav.="<option value='$i'>$i</option>\n";
}
$pagenav.="</select> 页,共 $lastpg 页";
}
}
?>
$sel2=$_POST['select2'];
你这样接收了两个变量,你这两个变量在每次刷新页数输出查询结果时,到底如何传递的 ?我发现你根本没有传递这两个变量;你测试下: $sel=$_POST['select'];
$sel2=$_POST['select2'];echo '<br/>$sel'.$sel.'<br/>';echo '$sel2'.$sel2.'<br/>'; 建议:一开始使用post,已经输入后使用get,该select与select2通过html传输。再则,你的查询条件:年代,类别。(我不知道这两个是不是查询条件,看不出来。。。。)是如何输入的?等你说明下你到底想实现什么样的功能再贴上来吧哥哥。。。。。我帮你改了下,不知道能不能运行,自己测试下吧: <?php
include("conn.php");
if(isset($_POST['select']))//这里修改下
$sel=$_POST['select'];//这里修改下
else//这里修改下
$sel = $_GET['select'];//这里修改下
if(isset($_POST['select2']))//这里修改下
$sel2=$_POST['select2'];//这里修改下
else//这里修改下
$sel2 = $_GET['select2'];//这里修改下
if($sel=='' and $sel2=='')//这里修改下
$sql="select * from test";//这里修改下
elseif($sel!='' and $sel2=='')//这里修改下
$sql="select * from test where leibie like '%$sel%'";
elseif($sel=='' and $sel2!='')//这里修改下
$sql="select * from test where niandai like '%$sel2%'";
else
$sql="select * from test where leibie like '%$sel%' and niandai like '%$sel2%' ";
$result=mysql_query($sql);
$total=mysql_num_rows($result);
include("pageft.php");
pageft($total,10);
$info=mysql_query("$sql limit $firstcount,$displaypg");
if(!$info)
echo '<font size=6 color=red ><p align="center">没有您所要查找的内容,请重新查找!</p></font>';
?> <table width="655" height="40" border="0" align="center">
<tr>
<td width="680" align="right"><span class="STYLE5 STYLE7"><?php if($info) echo $pagenav;?>
</span></td>
</tr>
</table>
<table width="847" height="48" border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="#000000">
<tr>
<td width="86" align="center"><span class="STYLE1 STYLE8">名称</span></td>
<td width="85" align="center"><span class="STYLE1 STYLE9">年代</span></td>
<td width="83" align="center"><span class="STYLE1 STYLE8">类别</span></td>
<td width="495" align="center"><span class="STYLE1 STYLE13 STYLE11">文物简介</span></td>
<td width="86" align="center"><span class="STYLE1 STYLE11 STYLE13">图片</span></td>
</tr>
</table>
<?php
if($info)
while($row=mysql_fetch_array($info)){
$m=$m+1;
?>
<table width="844" height="51" border="1" align="center" cellspacing="0">
<tr>
<td width="86" align="center"><?php echo $m,"-",$row[name_db];?></td>
<td width="83" align="center"><?php echo $row[niandai];?></td>
<td width="81" align="center"><?php echo $row[leibie];?></td>
<td width="502" align="left"><?php echo $row[remark];?></td>
<td width="80" align="center"><a href="../images/<?php echo $row[image_db];?> "target="_blank"><img src="../images/<?php echo $row [image_db];?>"width='80' height='80' /></td>
</tr>
</table>
<?php } ; ?>
<table width="838" height="75" border="0" align="center">
<tr>
<td width="824" align="center" class="STYLE5 STYLE7"> <?php if($info) echo $pagenav;?></td>
</tr>
</table></body>
</html>
下面的是分页代码<?php
//为了避免重复包含文件而造成错误,加了判断函数是否存在的条件:
if(!function_exists(pageft)){
//定义函数pageft(),三个参数的含义为:
//$totle:信息总数;
//$displaypg:每页显示信息数
//$url:分页导航中的链接,除了加入不同的查询信息“page”外的部分都与这个URL相同。
// 默认值本该设为本页URL(即$_SERVER["REQUEST_URI"]),但设置默认值的右边只能为常量,所以该默认值设为空字符串,在函数内部再设置为本页URL。
function pageft($totle,$displaypg=10,$url=''){//定义几个全局变量:
//$page:当前页码;
//$firstcount:(数据库)查询的起始项;
//$pagenav:页面导航条代码,函数内部并没有将它输出;
//$_SERVER:读取本页URL“$_SERVER["REQUEST_URI"]”所必须。
global $m,$page,$firstcount,$pagenav,$_SERVER;//为使函数外部可以访问这里的“$displaypg”,将它也设为全局变量。注意一个变量重新定义为全局变量后,原值被覆盖,所以这里给它重新赋值。
$GLOBALS["displaypg"]=$displaypg;if(!$page) $page=1;
//如果$url使用默认,即空值,则赋值为本页URL:
if(!$url){ $url=$_SERVER["REQUEST_URI"];}
//URL分析:
$parse_url=parse_url($url);
$url_query=$parse_url["query"]; //单独取出URL的查询字串
if($url_query){
//因为URL中可能包含了页码信息,我们要把它去掉,以便加入新的页码信息。
//这里用到了正则表达式
$url_query=ereg_replace("(^|&)page=$page","",$url_query);//将处理后的URL的查询字串替换原来的URL的查询字串:
$url=str_replace($parse_url["query"],$url_query,$url);//在URL后加page查询信息,但待赋值:
if($url_query)
$url.="&page"; else $url.="page";
}else {
$url.="?page";
}
$lastpg=ceil($totle/$displaypg); //最后页,也是总页数
$page=min($lastpg,$page);
$prepg=$page-1; //上一页
$nextpg=($page==$lastpg ? 0 : $page+1); //下一页$firstcount=($page-1)*$displaypg;//开始分页导航条代码:
$m=$firstcount;
$pagenav="显示第 <b>".($totle?($firstcount+1):0)."</b>-<b>".min($firstcount+$displaypg,$totle)."</b> 条记录,
共 $totle 条记录<br>";//如果只有一页则跳出函数:
if($lastpg<=1) return false;
echo '<br/>$url'.$url.'<br/>';
if($prepg) $pagenav.=" <a href='$url=1&select=$sel&select2=$sel2'>首页</a> "; else $pagenav.="首页 ";//这里修改下
if($prepg) $pagenav.=" <a href='$url=$prepg&select=$sel&select2=$sel2'>上一页</a> "; else $pagenav.="上一页 ";//这里修改下
if($nextpg) $pagenav.=" <a href='$url=$nextpg&select=$sel&select2=$sel2'>下一页</a> "; else $pagenav.="下一页 ";//这里修改下
if($nextpg) $pagenav.=" <a href='$url=$lastpg&select=$sel&select2=$sel2'>末页</a> "; else $pagenav.="末页 ";//这里修改下//下拉跳转列表,循环列出所有页码:
$pagenav.="转<select name='topage' size='1' onchange='window.location=\"$url=\"+this.value&select=$sel&select2=$sel2'>\n";//这里修改下
for($i=1;$i<=$lastpg;$i++){
if($i==$page) $pagenav.="<option value='$i' selected>$i</option>\n";
else $pagenav.="<option value='$i'>$i</option>\n";
}
$pagenav.="</select> 页,共 $lastpg 页";
}
}
?>
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-06-26
展开全部
123.com/xx.php?p=1&w=hop
接受p的值和W的值,这个会撒~
存储一下
$p = p
$w = w
你做分页的时下面有分页列表的撒
1 2 3 4 5 6 7
比如7页
这个列表你用循环出来的撒。你不要说你不会、、、 - -
总数据/每页显示量 = 页数
for ($i=7;$i<=7;$i++){ //这里写上你的循环分页列表代码,把你的查询条件也一起加上就行了
echo '<a href=xx.php?p='.$i.'&w='.$w.'>';
}
接受p的值和W的值,这个会撒~
存储一下
$p = p
$w = w
你做分页的时下面有分页列表的撒
1 2 3 4 5 6 7
比如7页
这个列表你用循环出来的撒。你不要说你不会、、、 - -
总数据/每页显示量 = 页数
for ($i=7;$i<=7;$i++){ //这里写上你的循环分页列表代码,把你的查询条件也一起加上就行了
echo '<a href=xx.php?p='.$i.'&w='.$w.'>';
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-06-26
展开全部
不知道你怎么会有这样的问题!一次查询显示所有的数据 翻页时为什么还要查询?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询