mysql select 偏移,具有限制和大偏移量的MySQL查询永远存在

我有一个使用以下PHP脚本构建的目录,该目录使用分页来获取每页1002个结果。问题在于,您进入页面的距离越远,加载页面所需的时间就越长。例如,第1页的加载速度明显快于10,000页。

我猜我在查询中做错了什么,而不仅仅是选择应限制的1002个结果,它还循环遍历了之前的所有结果。如果有人可以发布需要修复的代码,那就太好了!

感谢您的时间和帮助!

/*

Place code to connect to your DB here.

*/

include('websites/database.php'); // include your code to connect to DB.

$tbl_name="list"; //your table name

// How many adjacent pages should be shown on each side?

$adjacents = 5;

/*

First get total number of rows in data table.

If you have a WHERE clause in your query, make sure you mirror it here.

*/

$query = "SELECT COUNT(*) as num FROM $tbl_name";

$total_pages = mysql_fetch_array(mysql_query($query));

$total_pages = $total_pages[num];

/* Setup vars for query. */

$targetpage = "websites.php"; //your file name (the name of this file)

$limit = 1002; //how many items to show per page

$page = $_GET['page'];

if($page)

$start = ($page - 1) * $limit; //first item to display on this page

else

$start = 0; //if no page var is given, set start to 0

/* Get data. */

$sql = "SELECT website FROM $tbl_name LIMIT $start, $limit";

$result = mysql_query($sql);

/* Setup page vars for display. */

if ($page == 0) $page = 1; //if no page var is given, default to 1.

$prev = $page - 1; //previous page is page - 1

$next = $page + 1; //next page is page + 1

$lastpage = ceil($total_pages/$limit); //lastpage is = total pages / items per page, rounded up.

$lpm1 = $lastpage - 1; //last page minus 1

/*

Now we apply our rules and draw the pagination object.

We're actually saving the code to a variable in case we want to draw it more than once.

*/

$pagination = "";

if($lastpage > 1)

{

$pagination .= "

";

//previous button

if ($page > 1)

$pagination.= "< previous";

else

$pagination.= "< previous";

//pages

if ($lastpage < 7 + ($adjacents * 2)) //not enough pages to bother breaking it up

{

for ($counter = 1; $counter <= $lastpage; $counter++)

{

if ($counter == $page)

$pagination.= "$counter";

else

$pagination.= "$counter";

}

}

elseif($lastpage > 5 + ($adjacents * 2)) //enough pages to hide some

{

//close to beginning; only hide later pages

if($page < 1 + ($adjacents * 2))

{

for ($counter = 1; $counter < 4 + ($adjacents * 2); $counter++)

{

if ($counter == $page)

$pagination.= "$counter";

else

$pagination.= "$counter";

}

$pagination.= "...";

$pagination.= "$lpm1";

$pagination.= "$lastpage";

}

//in middle; hide some front and some back

elseif($lastpage - ($adjacents * 2) > $page && $page > ($adjacents * 2))

{

$pagination.= "1";

$pagination.= "2";

$pagination.= "...";

for ($counter = $page - $adjacents; $counter <= $page + $adjacents; $counter++)

{

if ($counter == $page)

$pagination.= "$counter";

else

$pagination.= "$counter";

}

$pagination.= "...";

$pagination.= "$lpm1";

$pagination.= "$lastpage";

}

//close to end; only hide early pages

else

{

$pagination.= "1";

$pagination.= "2";

$pagination.= "...";

for ($counter = $lastpage - (2 + ($adjacents * 2)); $counter <= $lastpage; $counter++)

{

if ($counter == $page)

$pagination.= "$counter";

else

$pagination.= "$counter";

}

}

}

//next button

if ($page < $counter - 1)

$pagination.= "next >";

else

$pagination.= "next >";

$pagination.= "

\n";

}

?>

$i = 0;

echo '

while($row = mysql_fetch_array($result))

{

$i ++;

if ($i<=3)

{

echo '

';

}

else

{

echo '

';

echo '

';

$i = 0;

$i++;

}

}

echo '

';

?>

=$pagination?>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值