php当分页或不分页时候只有一条的时候卡死
只有一条内容的时候卡死。或者翻页的时候第二页只有一条内容卡死。是不是死循环。这个地方困扰我老长时间了。都是凑合着用的。麻烦大侠给弄一下除了分页代码其他都有<?php$BZ...
只有一条内容的时候 卡死。或者翻页的时候第二页只有一条内容卡死。
是不是死循环。这个地方困扰我老长时间了。都是凑合着用的。麻烦大侠给弄一下
除了分页代码其他都有
<?php
$BZDB=mysql_connect('localhost','root','root') or die('不能连接数据库服务器: '.mysql_error());
mysql_select_db('shujuku',$BZDB) or die ('不能选择数据库: '.mysql_error());
mysql_query("set names 'utf8'");
@$column1 = $_REQUEST['search'];
$Page_size=10;
$result=mysql_query("select * from biaodb where (title like '%$column1%') ");
$count = mysql_num_rows($result);
$row = mysql_fetch_array($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'];
}
$offset=$Page_size*($page-1);
$sql="select * from biaodb where (title like '%$column1%') order by id desc limit $offset,$Page_size";
$result=mysql_query($sql,$BZDB);
if (mysql_num_rows($result)){
$k=0;
$i = 0;
while($k<2)
while ($row=mysql_fetch_array($result)) {
{
if ($i % 5 == 0)
{
?>
</tr><tr>
<?}?>
<table border="0" width="60" id="table2" height="30">
<tr><td>
<?echo $row["id"]?>
<?echo $row["title"]?>
<?echo $row["list"]?>
</td></tr></table>
</td>
<?
$i ++;
$k++;
}}}else{echo "<p align='center'>没有查到相关记录</p>";}
?> 展开
是不是死循环。这个地方困扰我老长时间了。都是凑合着用的。麻烦大侠给弄一下
除了分页代码其他都有
<?php
$BZDB=mysql_connect('localhost','root','root') or die('不能连接数据库服务器: '.mysql_error());
mysql_select_db('shujuku',$BZDB) or die ('不能选择数据库: '.mysql_error());
mysql_query("set names 'utf8'");
@$column1 = $_REQUEST['search'];
$Page_size=10;
$result=mysql_query("select * from biaodb where (title like '%$column1%') ");
$count = mysql_num_rows($result);
$row = mysql_fetch_array($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'];
}
$offset=$Page_size*($page-1);
$sql="select * from biaodb where (title like '%$column1%') order by id desc limit $offset,$Page_size";
$result=mysql_query($sql,$BZDB);
if (mysql_num_rows($result)){
$k=0;
$i = 0;
while($k<2)
while ($row=mysql_fetch_array($result)) {
{
if ($i % 5 == 0)
{
?>
</tr><tr>
<?}?>
<table border="0" width="60" id="table2" height="30">
<tr><td>
<?echo $row["id"]?>
<?echo $row["title"]?>
<?echo $row["list"]?>
</td></tr></table>
</td>
<?
$i ++;
$k++;
}}}else{echo "<p align='center'>没有查到相关记录</p>";}
?> 展开
1个回答
展开全部
不知道你用while($k<2)是什么作用?
这样试试.
<?php
$BZDB=mysql_connect('localhost','root','root') or die('不能连接数据库服务器: '.mysql_error());
mysql_select_db('shujuku',$BZDB) or die ('不能选择数据库: '.mysql_error());
mysql_query("set names 'utf8'");
@$column1 = $_REQUEST['search'];
$Page_size=10;
$result=mysql_query("select * from biaodb where (title like '%$column1%') ");
$count = mysql_num_rows($result);
$row = mysql_fetch_array($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'];
}
$offset=$Page_size*($page-1);
$sql="select * from biaodb where (title like '%$column1%') order by id desc limit $offset,$Page_size";
$result=mysql_query($sql,$BZDB);
if (mysql_num_rows($result)){
$i = 0;
?>
<table border="0" width="60" id="table2" height="30"><tr>
<?php
while ($row=mysql_fetch_array($result)) {
$i ++;
if ($i % 5 == 0)
{
?>
</tr><tr>
<?}?>
<td>
<?echo $row["id"]?>
<?echo $row["title"]?>
<?echo $row["list"]?>
</td>
<?
}
?>
</tr></table>
<?php
}else{echo "<p align='center'>没有查到相关记录</p>";}
?>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询