Re: [PHP] Cookie semi-security.

2001-01-25 Thread April
" <[EMAIL PROTECTED]> To: "April" <[EMAIL PROTECTED]>; "PHP General" <[EMAIL PROTECTED]> Sent: Wednesday, January 24, 2001 4:07 PM Subject: Re: [PHP] Cookie semi-security. > Enable track_vars in php's config and use > $PHP_COOKIE_VARS['

Re: [PHP] Cookie semi-security.

2001-01-24 Thread Alex Black
; To: "PHP General" <[EMAIL PROTECTED]> > Sent: Wednesday, January 24, 2001 5:06 PM > Subject: [PHP] Cookie semi-security. > > >> Stupid question, but I'm stumped. >> >> I'm passing a persons id through a cookie, then using that > to deter

Re: [PHP] Cookie semi-security.

2001-01-24 Thread Toby Butzon
Enable track_vars in php's config and use $PHP_COOKIE_VARS['cookie_id'] to get the value of the cookie. --Toby - Original Message - From: "April" <[EMAIL PROTECTED]> To: "PHP General" <[EMAIL PROTECTED]> Sent: Wednesday, January 24, 2

[PHP] Cookie semi-security.

2001-01-24 Thread April
Stupid question, but I'm stumped. I'm passing a persons id through a cookie, then using that to determine if they're allowed to be doing what they're trying to do (change listings, etc.). Right now, I'm getting the value of the cookie by just accessing $cookie_id, without anything fancy. The pro