[PHP] Re: help avoid multiple login

2005-11-30 Thread Mark Rees
the normal way of doing session 'closing' is by way of 'garbage collection' - every now and then a script/process/function is run that 'closes' any sessions which are (according to your criteria) inactive. php has stuff built it that will do this for you to a degree. - Is there a way I

Re: [PHP] Re: help avoid multiple login

2005-11-30 Thread Jochem Maas
Mark Rees wrote: the normal way of doing session 'closing' is by way of 'garbage collection' - every now and then a script/process/function is run that 'closes' any sessions which are (according to your criteria) inactive. php has stuff built it that will do this for you to a degree. -

[PHP] RE: help avoid multiple login

2005-11-30 Thread mail.pmpa
-Mensagem original- De: Jochem Maas [mailto:[EMAIL PROTECTED] the normal way of doing session 'closing' is by way of 'garbage collection' - every now and then a script/process/function is run that 'closes' any sessions which are (according to your criteria) inactive. php has stuff

[PHP] Re: help avoid multiple login

2005-11-28 Thread Matt Monaco
Create an object with the functionality of your choosing, in the destructor perform your cleanup operations. mail.pmpa [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Greetings I'm having some trouble on a members online script. I use a php script to track member login to avoid