Hi,

>   session_register("EasyUSER"); $EasyUSER=$login[username];
>   session_register("EasyPASS");$EasyPASS=$login[password];
>   session_register("EasySERVER");$EasySERVER=$login[db_server];
>   session_register("EasyDB");$EasyDB=$login[db_name];

I assume these are the lines which caused the error (counted just roughly).
Assign the value to the vars first then register the session.
This is a question of taste but isn't it eayier to register just one session
and put all the values into this session.

session_register("SESSION");
$SESSION["EasyUSER"]=$login["username"];
....

hope it helps (and works... ;-))

johannes



-- 
PHP Install 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