RE: [PHP] Deleteing one session

2003-08-01 Thread Ford, Mike [LSS]
> -Original Message- > From: Ryan A [mailto:[EMAIL PROTECTED] > Sent: 31 July 2003 00:34 > > > have around 20 sessions setup and want to delete one of them... > eg: > I have the following sessions: Can I just make a little correction to your terminology, as every time I read your questio

Re: [PHP] Deleteing one session

2003-07-30 Thread Curt Zirzow
* Thus wrote Ryan A ([EMAIL PROTECTED]): > Hi, > have around 20 sessions setup and want to delete one of them... > eg: > I have the following sessions: > one > two > three > four > five > etc > I want to delete "four", what should i use? am puzzled by the manual which > offers these two options: >

[PHP] Deleteing one session

2003-07-30 Thread Ryan A
Hi, have around 20 sessions setup and want to delete one of them... eg: I have the following sessions: one two three four five etc I want to delete "four", what should i use? am puzzled by the manual which offers these two options: unset($four); session_unregister($four); which is better? I am st