簡體   English   中英

我如何移動我的評論,同時保持下面的答復?

[英]How could I move my comments while keeping replies underneath?

我正在嘗試創建一個評論系統,用戶可以在其中留下評論,然后其他用戶可以回復這些評論。 我希望將實際帖子放置在頁面的左側,將評論放置在頁面的右側,以便用戶無需滾動到實際帖子即可閱讀評論。 我試過使用position:absolute,但是后來與我的回復系統混淆了。 有人知道更簡單的方法嗎?

我的密碼

while ($commentrow = mysqli_fetch_assoc($commentresult)) {
                        if (mysqli_num_rows($commentresult)==0) {
                            echo '';
                        }
                        else {
                            $commenterid = $commentrow['userid'];
                            $commentersql = "SELECT * FROM users WHERE userid = '$commenterid'";
                            $commenterresult = mysqli_query($conn, $commentersql);
                            while ($commenterrow = mysqli_fetch_assoc($commenterresult)) {

                                echo     '<div class="PostComments">';

                                    if ($commenterrow['profileimg'] == 1) {
                                        $filename = "profilepics/profile".$commenterid."*";
                                        $fileinfo = glob($filename);
                                        $fileext = explode(".", $fileinfo[0]);
                                        $fileactualext = $fileext[1];
                                        echo "<div class='CommentProfilePicture'><img src='profilepics/profile".$commenterid.".".$fileactualext."?".mt_rand()."'></div>";
                                    }
                                    else {
                                        echo "<div class='CommentProfilePicture'><img src='profilepics/noUser.png'></div>";
                                    }

                                echo     "<div class='CommentUserName'>".$commenterrow['userName']."</div>";
                                echo    "<div class='CommenterComment'>".$commentrow['comment']."</div> </div>";
                            }

                            $currentcommentid = $commentrow['commentid'];
                            $replysql = "SELECT * FROM posts WHERE hostid = '$hostid' AND postid = '$postid' AND commentid = '$currentcommentid' AND replyid > 0";
                            $replyresult = mysqli_query($conn, $replysql);
                            while ($replyrow = mysqli_fetch_assoc($replyresult)) {
                                if (mysqli_num_rows($replyresult)==0) {
                                    echo '';
                                }
                                else {
                                    echo '
                                            <div class="PostReplies">
                                                <p>
                                                    '.$replyrow['reply'].'
                                                </p>
                                            </div>
                                    ';
                                }
                            }
                        }
                    }

我的造型

.PostPage {
          width: 60%;
          padding: 10px;
          background-color: #555;
          color: white;
          margin: 0px;
    }
    .PostComments {
          width: 30%;
          background-color: #555;
          padding: 10px;
          border-radius: 4px;
          color: white;
    }
    .PostReplies {
          width: 30%;
          background-color: #555;
          padding: 10px;
          color: white;
    }

如果您有任何問題,我將很樂意為您解答。

在評論和回復上創建一個div標簽。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM