不起作用的朋友系统

时间:2012-11-21 18:03:26

标签: php mysqli

现在我正在努力建立像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的检查是朋友,这样他们就无法再次相互申请。

如果您想知道任何事情,那么您会再问我一次。

希望你能帮助我

0 个答案:

没有答案