I guess you are messing things up.
First, you have to create, if you don't already have, a sessions table in order to get the timestamps of logged users.
The you have to create a "friend" table to connect 2 different users - this is friendship - to only show his/her friend that have logged recently.
So, a user do the Login and you insert into session table the user id. When you need to show your "panel" with the last friend that have logged in recently you have to make a query from 2 tables: friendship and session, something like this:
session (session_id, uid, lastTimeLogged)
where lasTimeLogged is a Timestamp column
friendship (uid, uid_friend)
uid_friend will be the uid (user) friend id (1 is friend of 2, 1 is friend of 3, and so on).
To get the recent logged "friends"
SELECT uid_friend FROM friendship
INNER JOIN session
ON friendshio.uid_friend = session.uid
AND lastTimeLogged < DATE_SUB(CURRENT_TIMESTAMP, 30 MINUTE)
WHERE uid = logged_user_id
This should get the last logged friends in the last 30 minutes. This is just a sample how it should works. I didn't checked the SQL code, either. Hope it helps you!
EDIT - get the last 10 visitors in the last month
SELECT uid_friend FROM friendship
INNER JOIN session
ON friendshio.uid_friend = session.uid
AND lastTimeLogged < DATE_SUB(CURRENT_TIMESTAMP, INTERVAL 1 MONTH)
WHERE uid = logged_user_id
ORDER BY lastTimeLogged DESC
This would do the trick. Note: the code was not tested!