gpt4 book ai didi

PHP 不回显所有 MySQL 行

转载 作者:行者123 更新时间:2023-11-29 23:01:30 25 4
gpt4 key购买 nike

我正在制作一个评论框,其中

  • 评论框将位于帖子下方
  • 每个评论框都有与帖子相同的 ID
  • 这就是为什么我更喜欢做 while 循环

不知何故,我成功地回显了评论的行,但是问题是*第一行(是的第一行)没有被显示/回显。

这是我的代码:
注意:还有另一个 while 循环执行此代码。

// making the comments box 
$dbc->select_db("feed_update_comment");
$select_comment_table = "SELECT * FROM feed_comment_" . $row['id'] . " ORDER BY id";
$result_query_select_comment_table = $dbc->query($select_comment_table);
if(!$result_query_select_comment_table) {
$result_select_comment_table = array("full_name" => "", "comment"=> "No comments yet.");

}
else {
$result_select_comment_table = $result_query_select_comment_table->fetch_assoc();
}
echo '<div id="feed_comment_box_' . $row['id'] . '"' . 'class="feed_comment_box_cl"><div id="add_comment_id" class="add_comment_cl">
<form class="comment_form" method="post" action="' .$_SERVER['PHP_SELF'] . '">
<input name="comment_full_name" type="text" class="input_comment_full_name"> </input>
<textarea name="input_comment_text" type="text" class="input_comment_text" ></textarea><input class="submit_input" name="comment_submit" type="submit"></input> <br>
</form>
</div><br>
<div class="comment_box_cl">';
while ($results_select_comment_table = $result_query_select_comment_table->fetch_assoc()) {
echo '<table tabindex="0" class="comment_box"><tr> <td class="comment_text">' . $results_select_comment_table["comment"] . '</td></tr><br>' .
'<tr> <td class="comment_full_name">' . $results_select_comment_table["full_name"]. '</td></tr><br>'
. '</table>';
}
echo '</div></div>';
echo '</div>';

//making of comment box finishes

最佳答案

删除行:

else {
$result_select_comment_table = $result_query_select_comment_table->fetch_assoc();
}

关于PHP 不回显所有 MySQL 行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28463778/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com