[PHP] native vs. phplib sessions

2003-04-04 Thread Dennis Gearon
How many people are using native vs. phplib sessions, vs. their own/homegrown sessions? The archives show a LOT of problems with native sessions. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] native vs. phplib sessions

2003-04-04 Thread Jimmy Brake
homegrown make a rand value for the cookie -- stick that rand value in a db with the actual user account info ... then we pull the real account info using the random value from their cookie -- simple, efficient and pretty dang secure -- also the system is load balance friendly On Fri,

RE: [PHP] native vs. phplib sessions

2003-04-04 Thread John W. Holmes
How many people are using native vs. phplib sessions, vs. their own/homegrown sessions? The archives show a LOT of problems with native sessions. I've never had any problems with the native PHP session implementation (except for that buggy 4.2.?? version). It can be adapted to use databases