1

现在就是这样,我正在努力制作一个像 facebook 这样的好朋友系统,因为我希望它成为它;

  • 看看你是不是朋友,如果是,那么它会说“朋友”
  • 如果是这样,你们不是朋友一定有能力申请个人友谊。

$fra_id是他作为候选人 $tid_id是你想成为他的朋友 $godkendt_ven是你是否被批准。如果为 0 表示尚未批准,如果为 1 则为朋友。

 if($_SESSION["logged_in"] == true)
            {
                echo "<ul>";
                //Posts to he
                echo "<li class=\"ProfilIndhold_top_b\">Beskede</li>";
                    if ($stmt1 = $this->mysqli->prepare('SELECT `fra_id`, `til_id`, `godkendt_ven` FROM `venner` WHERE `fra_id` = ? OR `til_id` = ?')) { 
                    $stmt1->bind_param('ii', $fra_id, $til_id);
                    $fra_id = $_SESSION["id"];
                    $til_id = $_SESSION["id"];

                    $stmt1->execute();
                    $stmt1->bind_result($fra_id, $til_id, $godkendt_ven);
                        while ($stmt1->fetch()) {
                            /*
                            if($_GET["id"] == $_SESSION["id"])
                            {
                                //can not add myself
                                echo "<li class=\"ProfilIndhold_top_a\">Kan ikke</li>";
                            }
                            */
                            elseif($_GET["id"] != $_SESSION["id"])
                            {
                                if($godkendt_ven == 0 and $til_id != $_GET["id"] or $fra_id != $_GET["id"])
                                {
                                    //Can add to friends
                                    echo "<li class=\"ProfilIndhold_top_a\">Tilføj</li>";
                                }
                                if($godkendt_ven == 1 and $til_id == $_GET["id"] or $fra_id == $_GET["id"])
                                {
                                    //We are friends
                                    echo "<li class=\"ProfilIndhold_top_a\">Venner</li>";
                                }
                            }
                        }
                    $stmt1->close();
                    }
                    else
                    {
                        echo 'There was an error in the declaration: ' . $this->mysqli->error;
                    }
                echo "<ul>";
            }
            //Showing no matter what this content

所以我的问题是您是否可以采取多种方式,例如对示例用户 1 和用户 2 的一项检查是朋友,因此他们将无法再次相互申请。

问题然后你会再次问我是否有任何你想知道的..

希望你能帮我

4

0 回答 0