Printable Version of Topic

Click here to view this topic in its original format

HTMLHelp Forums _ Markup (HTML, XHTML, XML) _ Timestamp and database.

Posted by: imrie Jun 23 2007, 02:38 PM

Ok, i have a database of registered members, i want it to say "X members online" when they are logged in. How could i do this. I think is what i need to do is to have a timestamp that logs when they are online every 5-10 mins and calls up the number from the database.

Only question is...........how?

thanks.

Posted by: Brian Chandler Jun 23 2007, 02:57 PM

There is actually no such thing as "online", since http is a sessionless protocol. So like everyone else, you fake up some nonsense, and pretend that a person is "online" for 5 minutes, or 10 minutes, or whatever the global standard nonsensical figure is. Then you keep a list of "online members" (database table: memberID, timeleft), and each time someone accesses a page, you set their timeleft value to 10 (or whatever), and every minute you run a function that decrements all the timeleft values.

Can I have a patent on that please, since I just invented it?

Posted by: imrie Jun 23 2007, 03:11 PM

o

so when all the other sites say we have 22 members online how do they do it?

Posted by: Darin McGrew Jun 23 2007, 06:16 PM

It means that "22 members" have requested a page from the server within the last n minutes, where n is defined by whoever implemented the "members online" feature.

Posted by: imrie Jun 24 2007, 06:22 AM

how would i do that?

Powered by Invision Power Board (http://www.invisionboard.com)
© Invision Power Services (http://www.invisionpower.com)