douxiuyu2028 2013-06-30 12:28
浏览 10
已采纳

PHP / MySQL SELECT LIMITER问题

I posted this question before but I did not know the cause but now I do. The other question is way out of hand.

I am making a page function (next page etc..) and need my $limiter to select 9 querys per page. The issue I am having is that the second page (9,9) does not come in.

if(isset($_GET["p"]) && is_numeric($_GET["p"]) && $_GET["p"] > 1) {
        $currentPage = $_GET["p"];
        $limiter = $currentPage * 9;
} else {
        $currentPage = 1;
        $limiter = 0;
}

$finalQuery = "SELECT * FROM forum_replies WHERE thread_id = '1' ORDER BY id ASC LIMIT " . $limiter . ",9";

So if page is 1, $limiter is 0. So.. 0,9 comes in

Next should be 9,9 but the code completley skips that so I am missing out on page two

Page three works which is 18,9

So.. it goes 0,9 - 18,9, 27,9 etc.. completely skipping 9,9. What would I add to my if(isset)) function to make it select all if it and not skip 9,9.

  • 写回答

3条回答 默认 最新

  • dta38159 2013-06-30 12:41
    关注

    If i am not wrong i think your calculations for $limiter variable is incorrect. it should be $limiter = ($currentPage - 1) * 9;

    if(isset($_GET["p"]) && is_numeric($_GET["p"]) && $_GET["p"] > 1) {
        $currentPage = $_GET["p"];
        $limiter = ($currentPage -1) * 9;
    } else {
        $currentPage = 1;
        $limiter = 0;
    }
    
    $finalQuery = "SELECT * FROM forum_replies WHERE thread_id = '1' ORDER BY id ASC LIMIT " . $limiter . ",9";
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 单片机学习顺序问题!!
  • ¥15 ikuai客户端多拨vpn,重启总是有个别重拨不上
  • ¥20 关于#anlogic#sdram#的问题,如何解决?(关键词-performance)
  • ¥15 相敏解调 matlab
  • ¥15 求lingo代码和思路
  • ¥15 公交车和无人机协同运输
  • ¥15 stm32代码移植没反应
  • ¥15 matlab基于pde算法图像修复,为什么只能对示例图像有效
  • ¥100 连续两帧图像高速减法
  • ¥15 如何绘制动力学系统的相图