RE: [PHP] Re: correct session format?

2003-07-16 Thread Bill MacAllister
--On Monday, June 23, 2003 08:30:19 AM -0600 "Johnson, Kirk" <[EMAIL PROTECTED]> wrote: So what is the diffirent between : session_start (); $_SESSION['eventid'] = 'arma2'; and session_start (); session_register('arama2'); Use the first method to create session variables when register_global

RE: [PHP] Re: correct session format?

2003-06-23 Thread Johnson, Kirk
> So what is the diffirent between : > session_start (); > $_SESSION['eventid'] = 'arma2'; > and > session_start (); > session_register('arama2'); Use the first method to create session variables when register_globals is "off" in the php.ini file. Use the second method when it is "On". http://