RE: [PHP] Blatant newbie question - killing a session

2003-07-10 Thread Bruce Bruen
Thanks, That did the trick. Nicely encapsualable too, so I can easily remove it. Regards Bruce -Original Message- From: Marek Kilimajer [mailto:[EMAIL PROTECTED] Sent: Thursday, 10 July 2003 8:23 PM To: Bruce Bruen Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Blatant newbie question

RE: [PHP] Blatant newbie question - killing a session

2003-07-10 Thread Brenton Dobell
session_destroy(); session_unset(); -Original Message- From: Bruce Bruen [mailto:[EMAIL PROTECTED] Sent: Thursday, July 10, 2003 4:18 PM To: [EMAIL PROTECTED] Subject: [PHP] Blatant newbie question - killing a session Hi, this is my first question to the list and ... Yes I'm a newbie, ve

Re: [PHP] Blatant newbie question - killing a session

2003-07-10 Thread Marek Kilimajer
You mean killing the session cookie? setcookie (session_name(), "", time() - 3600); session_unset(); // or $_SESSION = array(); session_destroy(); Bruce Bruen wrote: Hi, this is my first question to the list and ... Yes I'm a newbie, verrry wet behind the ears. I am trying to set up a secured site