Re: [PHP-DB] who's logged on / how to I find out about other sessions

2001-07-23 Thread Tom Carter
Hi Christian, What most sites do is to keep track of the latest time that a user requested a page (ie when a page is requested store the current time). Then a definitiion of "logged-in" is made usually this is "has requested a page in the last 30 minutes" so the query to count the users who

[PHP-DB] who's logged on / how to I find out about other sessions

2001-07-23 Thread Cable, Christian
Hi, I'm writing a bbs/messageboard system and am trying to figure out how to tell what other users are logged on. I know I could store the info in a table in my login code but then how do I find out if people are logged out with out making them actually use a logout button or the like. I was g