Oh really?? Wow PHP must be very popular then! I'm going to learn PHP then since we both already know PHP! Its really great! Thanks for that advice kid! Really appreciated that comment that you posted for nothing! :D
To create a user online table, you must make a database table.
CREATE TABLE online_chatroom
(
id NOT NULL AUTO_INCREMENT,
user varchar(18),
chatroom varchar(30),
online int(100)
)
Then whenever someone enters a chatroom, insert the data with row online=time() + 1800.
time() +1800 is the current time plus 15 minutes.
To prevent from a user being inserted more than once per chatroom, use mysql_num_rows() to check with a query that selects the user and chatroom rows.
If the row(s) exist, update the table where the user and chatroom are the values given.
If not, insert.
Then just run a query to check where the chatroom equals the current chatroom and online>=time() + 1800.
Every time the users posts, update the table with online=time() + 1800.
Again, unreliable scripting.↑
Don't use sessions for everything.
They expire, and then what?
Re-declare the session?
You're just making too much work for yourself--a database is the greatest tool for PHP.
Well, if you have the right host, it doesn't matter.
And you can't define how long a session lasts. A session is supposed to when the browser window is closed--not before.
That's one of the screwy things with the DSi's parsing of PHP: sessions expire without the browser closing out.
SELECT
DISTINCT(username)
FROM t_members
WHERE TIMESTAMPDIFF(MINUTE, `last_online`, NOW())<5
That is only the query. Assuming you know the rest.
That query pulls away the data that is less than 5 minutes. Due to a dyslexic moment I'm suffering right now, the less-than may need to be switched to a greater-than. But I'm sure I have it right.
"last_online", and the other column/table names can be changed according to what your table uses.
"last_online" is a timestamp column that updates whenever a user comes online. You will have to program it separately to make it function. It can also be your chatroom table's timestamp, which in that case, you will have to use LEFT JOIN.
DISTINCT will make sure only one record at a time is pulled up, otherwise you will have doubles or triples (or mores).
I know my apprehensions might never be allayed. And so I close, realizing that perhaps the ending has not yet been written...
I like your style, Chuck. Let this be a lesson to everyone. Take the initiative to take some scripting classes, online or offline, to learn advanced scripts.
Translation:
Well guys I learned how to make an online script. It's very easy, just a MySQL update query but with $time as time() - 60.
Yeah, not really different from what Chuck showed us--he just used SQL more than PHP in his online script.
And to burst your bubble, 1 minute to track if a user online is terrible.
What if they stay on one page and say compose a message/blog or whatever that takes LONGER than 1 minute to make?
They will not be shown on the online table then even though they are online, just busy.
Try 5 minutes. That's 300 seconds I believe.