Is there an article or site that will explain how to overcome the 20 cookies limit? Any suggestions on the topic? Any direction?
I would use sessions, but we're using php 3.
Thanks!
I wasn't going to reply, but no-one else has, as far as I know, sessions work in PHP3, so whats the problem?
Dave,
One way to overcome 20 cookie limit is to store values in an array instead of a single variable...
Another way to overcome is go to php.net get yourself PHP 4.0.4 and use sessions..
Di
If you're really stuck with PHP3, you could try building your own session-handling system. If you just need to store scalar variables it wouldn't be too dificult. Or you could go get one of the others that have already been coded and adapt it.
-Keegan