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

[eluser]rwestergren[/eluser]
Something like this should get you the number of friends:

Code:
function get_connected_friends($user_id)
{
    $query = $this->db->query("
    SELECT COUNT(*) as friend_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;
}


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