> 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://www.php.net/session
Kirk
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

