At 22:05 07.03.2001, Jacky@lilst said:
--------------------[snip]--------------------
>People
>very basic question here, I wanna assign username onto session after the 
>login succeed, I use:
>
>session_start();
>session_register("username");
>$UserNameSession="username";
--------------------[snip]-------------------- 

session_start();
session_register($UserNameSession);
if (!isset($UserNameSession))
    $UserNameSession="username";

--------------------[snip]-------------------- 
I got problem of how to assign session value in php3. As far as I know, all
syntax in manual talks about php4 syntax only. How am I going to do that?
--------------------[snip]-------------------- 

do nothing, PHP will assign the value for you.


     ...ebird

   >O     Ernest E. Vogelsinger
   (\)    http://www.1-at-web.at/
    ^     ICQ#   13394035


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to