[PHP] Re: who's on-line application - php

2005-02-15 Thread Stefan Dengscherz
Hello, usually you can not determine clearly who is online on your website at the moment because http is a session-less protocol (thus php implements a session mechanism through cookies or session id). However you can use the following approach: - add a 'last_seen' field to the users table of

[PHP] Re: who's on-line application - php

2005-02-14 Thread Jason Barnett
Jacques wrote: I would like to indicate the particulars (from a MySQL database) of all those users that are currently on-line (those whom have successfully signed in). How should I go about achieving this? Does it have something to do with Sessions? Jacques: the best solutions that I have seen