Re: [PHP] Cookie Variables Maxing Out Using IE6

2006-08-18 Thread Richard Lynch
Set your session time out to, oh, 2 years or less (as in the spec, they are gonna ignore you if you try more than 2 years). You could even set *ONE* cookie with all the values serialized in an array, and probably stay under the 4K limit. Then you get people like me who, if a cookie value looks TO

Re: [PHP] Cookie Variables Maxing Out Using IE6

2006-08-17 Thread Adam Zey
[EMAIL PROTECTED] wrote: There are 24 check boxes, and each selection triggers a graphical display of radiation levels in a specific area over the last hour. David So, if the user deletes the cookie, they grow a third eye? At last, a viable method of preventing privacy nazis from deleting my

Re: [PHP] Cookie Variables Maxing Out Using IE6

2006-08-17 Thread dpgirago
On Wed, August 16, 2006 9:00 am, [EMAIL PROTECTED] wrote: > Does IE6 limit somehow/somewhere the number of cookie variables I can > create and store? Richard Lynch responded: > Yes. > > Read the Cookie spec. > > There's no need for any site to ever send more than ONE Cookie anyway. > > Just use s

Re: [PHP] Cookie Variables Maxing Out Using IE6

2006-08-16 Thread Richard Lynch
On Wed, August 16, 2006 9:00 am, [EMAIL PROTECTED] wrote: > Does IE6 limit somehow/somewhere the number of cookie variables I can > create and store? Yes. Read the Cookie spec. There's no need for any site to ever send more than ONE Cookie anyway. Just use session_start() and you can store all

Re: [PHP] Cookie Variables Maxing Out Using IE6

2006-08-16 Thread dpgirago
> On Wed, August 16, 2006 9:00 am, [EMAIL PROTECTED] wrote: >> Does IE6 limit somehow/somewhere the number of cookie variables I can >> create and store? Richard Lynch wrote: > Yes. > > Read the Cookie spec. > > There's no need for any site to ever send more than ONE Cookie anyway. > > Just use s