为了账号安全,请及时绑定邮箱和手机立即绑定

php 而循环不显示 15 行之后的行

php 而循环不显示 15 行之后的行

PHP
猛跑小猪 2022-08-05 10:04:13
你好,我有两个文件,一个文件包含主要帖子,第二个文件包含加载更多帖子代码以下是主文件的代码,但在这个文件中,我有一个问题,我必须循环php中的所有mysql行,我可以使用while循环来做到这一点,但是当我尝试这样做时,我会得到所有行,但在15行之后,它只显示那些在15行之后的行,比如只有16行我的主要.php代码while ($row = $stmt->fetch(PDO::FETCH_ASSOC)) {    $nv_name_split = str_replace('_', ' ', $row['novel_name']);    echo '<br><a href="episode?novel='.$row['novel_name'].'&episode='.$row['episode_num'].'"><figure class="snip1253"><div class="image"><img width="100%"src="images/sneakpeaks/'.$row['sneak_peak'].'" alt="sample59"/></div><figcaption>'.            '<div class="date"><span class="day">'.$row['day'].'</span><span class="month">'.$row['month'].'</span></div><h3>Episode # '.$row['episode_num'].'</h3>  <footer>            <div class="writer text-center"><i class="fa fa-book"> '.$nv_name_split.'</i></div>            <div class="love"><i class="fa fa-thumbs-up"></i>'.$row['likes'].'</div>            <div class="comments"><i class="fa fa-comments"></i>'.$row['comments'].'</div></footer></figure></a></figcaption><br><br>';}?><?php $stmt_count = $novel_list->runQuery("SELECT episode_num                                     FROM posts                                     WHERE just_skpk='0'");$stmt_count->execute();while ($rows = $stmt_count->fetch(PDO::FETCH_ASSOC)) {    $count_row = $rows['episode_num'];}if ($limit < $count_row) {    echo'<form id="frm_more_post">            <center>            <button type="submit" class="form-control btn btn-load_more" id="frm_btn_more">Load More Posts</button>            </center>        </form>        <br>        <br>';}else{    echo'<form id="frm_more_post">            <center>            <button type="submit" disabled class="disabled form-control btn btn-load_more" id="frm_btn_more">No More Posts</button>            </center>            </form>            <br>            <br>'; }这是我load_more.php代码,我使用ajax发布帖子限制
查看完整描述

2 回答

?
慕田峪4524236

TA贡献1875条经验 获得超5个赞

在你的代码中,你得到episode_num为$count_row,但它应该是没有行。试试下面的代码


$novel_list = new USER();


if (isset($_POST['page'])) {   

    $limit = $_POST['page']+3;

    $stmt = $novel_list->runQuery("SELECT * 

                                    FROM posts 

                                    WHERE just_skpk='0' 

                                    ORDER BY id DESC 

                                    LIMIT $limit");

    $stmt->execute();

    if ($stmt->rowCount(0)) {

        echo '<input class="hidden" id="pages" value="'.$limit.'"/>';


        while ($row = $stmt->fetch(PDO::FETCH_ASSOC)) {

            $nv_name_split = str_replace('_', ' ', $row['novel_name']);

            echo '<br><a data-pages="'.$limit.'" href="episode?novel='.$row['novel_name'].'&episode='.$row['episode_num'].'"><figure class="snip1253"><div class="image"><img width="100%"src="images/sneakpeaks/'.$row['sneak_peak'].'" alt="sample59"/></div><figcaption>'.


                '<div class="date"><span class="day">'.$row['day'].'</span><span class="month">'.$row['month'].'</span></div><h3>Episode # '.$row['episode_num'].'</h3>  <footer>


                <div class="writer text-center"><i class="fa fa-book"> '.$nv_name_split.'</i></div>


                <div class="love"><i class="fa fa-thumbs-up"></i>'.$row['likes'].'</div>


                <div class="comments"><i class="fa fa-comments"></i>'.$row['comments'].'</div></footer></figure></a></figcaption><br><br>';


        }


        $stmt_count = $novel_list->runQuery("SELECT count(*) as cnt 

                                            FROM posts 

                                            WHERE just_skpk='0'");


        $stmt_count->execute();


        while ($rows = $stmt_count->fetch(PDO::FETCH_ASSOC)) {

            $count_row = $rows['cnt'];

        }

        if ($limit < $count_row) {

            echo '<form id="frm_more_post">

                    <center>

                        <button type="submit" class="form-control btn btn-load_more" id="frm_btn_more">Load More Posts</button>

                     </center>

                  </form>

                  <br>

                  <br>';

        }else{

            echo '<form id="frm_more_post">

                    <center>

                        <button type="submit" disabled class="disabled form-control btn btn-load_more" id="frm_btn_more">No More Posts</button>

                    </center>

                   </form>

                   <br>

                   <br>'; 

        }

    }else{

        echo 0 ;

    }

}


查看完整回答
反对 回复 2022-08-05
?
慕无忌1623718

TA贡献1744条经验 获得超4个赞

我认为这是因为分页。在文件load_more.php中,您正在设置限制

$limit = $_POST['page']+3;

并在文件中,主.php

if ($limit < $count_row)

这是检查。


查看完整回答
反对 回复 2022-08-05
  • 2 回答
  • 0 关注
  • 85 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信