[PHP] Session tracking question

2001-01-23 Thread Wade D
what do most use, combination of cookies and GET? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP] Session tracking question

2001-01-23 Thread Alexander Wagner
Wade D wrote: what do most use, combination of cookies and GET? IMHO the optimal solution are cookies with a fallback to GET. In some situations, though, it may be better to drop cookies completely. Wagner -- One maniac alone can do what 20 together cannot -- PHP General Mailing List

Re: [PHP] Session tracking question

2001-01-23 Thread Todd Cary
Wade - I am very new with using PHP so I cannot submit my answer as "what most use". However, here is what I use: I do not like to be dependent on Cookies. For me, Cookies are a convenience. That is, I may store a UserID and if it is in a Cookie, use the ID to put up a greeting or whatever.