* Thus wrote David T-G ([EMAIL PROTECTED]): > Hi, all -- > > Well, now that I have to change my code around, I suppose I should learn > the best way, if there is one in particular, to manage sessions. > > Should I use $_SESSION for everything or should I use session_start and > session_register and friends instead? Is there a clear win with either > one?
$_SESSION is the proper way to do it (with globals off), you will still need to call session_start() on each page. Curt -- "My PHP key is worn out" PHP List stats since 1997: http://zirzow.dyndns.org/html/mlists/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php