Welcome Guest, Not a member yet? Register   Sign In
Friends count of my friends
#7

[eluser]JamieBarton[/eluser]
[quote author="rwestergren" date="1343230912"]Ahh, I see. This will give you your friends and the count of how many friends each of them have:
Code:
function get_connected_friends($user_id)
{
    $query = $this->db->query("
    SELECT *,
            (SELECT COUNT(*) as friend_count
            FROM friends f2
            WHERE f2.user_id = f.user_id AND f2.approved = 1) AS f_count
    FROM friends f
    INNER JOIN users u on(u.id = f.friend_id)
    WHERE f.user_id = $user_id AND f.approved = 1
    ");
    return $query;
}
[/quote]

That's just giving me the number of friends for me whenever I try to call f_count.


Messages In This Thread
Friends count of my friends - by El Forum - 07-25-2012, 06:57 AM
Friends count of my friends - by El Forum - 07-25-2012, 07:40 AM
Friends count of my friends - by El Forum - 07-25-2012, 07:46 AM
Friends count of my friends - by El Forum - 07-25-2012, 07:59 AM
Friends count of my friends - by El Forum - 07-25-2012, 08:22 AM
Friends count of my friends - by El Forum - 07-25-2012, 08:41 AM
Friends count of my friends - by El Forum - 07-25-2012, 08:48 AM
Friends count of my friends - by El Forum - 07-25-2012, 09:08 AM
Friends count of my friends - by El Forum - 07-25-2012, 09:10 AM
Friends count of my friends - by El Forum - 07-25-2012, 09:17 AM



Theme © iAndrew 2016 - Forum software by © MyBB