dongtan8122 2014-10-23 09:01
浏览 40
已采纳

PHP while循环回显重复

I need some help with some methodology

I have a SQL statement that fetches results from a questions 'header table'.

while() the data is being fetched I'm running another SQL statement that pulls comments from a 'sub table' according to the id fetched from the questions table.

When I echo all together, question number 1's comments show fine, all the comments related to the question are showing fine.

The issue is when question number 2's comments are echoed, comments from question number 1 show up (duplicated).

I just can't figure out where I'm going wrong.

Here's a simplified version of what my code looks like just to show the methodology:

$comment_list = ""; // to display comments
$GET_QUESTIONS = $DBH->prepare("SELECT ...");
// parameters are bound here using $GET_STATEMENTS->bindParam();

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

    $question_id = $row['id'];
    $question_string = $row['string'];

    // NOW I PULL THE COMMENTS
    $GET_COMMENTS = $DBH->prepare("SELECT ...");
    // parameters are bound here using $GET_COMMENTS->bindParam();

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

        $comment_id = $row['id'];
        $comment_string = $row['string'];

        $comment_list .= "
            <p>" .$comment_string. "</p>
        ";

    }

    echo "
        <h1>" .$question_string. "</h1>
        " .$comment_list. "

    ";

}

Why are the duplicates happening when echoing the second question?

  • 写回答

1条回答 默认 最新

  • dongtuo6562 2014-10-23 09:25
    关注

    You've to reset the $comment_list variable before the second while loop. Set it as

    $comment_list = null ; 
    

    Just before the second while loop. That's all !

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 matlab计算中误差
  • ¥15 对于相关问题的求解与代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 信号傅里叶变换在matlab上遇到的小问题请求帮助
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料
  • ¥15 使用R语言marginaleffects包进行边际效应图绘制
  • ¥20 usb设备兼容性问题
  • ¥15 错误(10048): “调用exui内部功能”库命令的参数“参数4”不能接受空数据。怎么解决啊