I think you mean:

$_SESSION['eventid'] = 'arma2';

vs

$eventid = 'arma2';
session_register('eventid');

I'd advise the first, unless you need to ensure backwards compatibility with
PHP < 4.1


Justin





on 22/06/03 4:41 PM, nabil ([EMAIL PROTECTED]) wrote:

> what is the diffirent between :
> //////////
> session_start ();
> $_SESSION['eventid'] = 'arma2';
> ///////////
> and
> /////////////
> session_start ();
> session_register('arama2');
> ///////////
> 
> Regards
> Nabil
> 
> --
> ""open source world, open mind for all""
> 
> 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to