RE: [PHP] Wierd cookie behiavor

2001-07-11 Thread scott [gts]
of HTML you give it... > -Original Message- > From: david jarvis [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, July 11, 2001 12:54 PM > To: scott [gts] > Subject: Re: [PHP] Wierd cookie behiavor > > > hmm, still no luck. The problem isnt that the cookie in in memory, the &

RE: [PHP] Wierd cookie behiavor

2001-07-11 Thread scott [gts]
if you dont specify an expiration time, the cookie will hang around in memory until the browser is closed... even if it's an empty cookie. (AFAIK) if you really want it deleted, when the user "logs out" setcookie("membership", "", time()-1); that'll set the expire time to one second in the past,