Dear All:
I wrote the below script in the login.php:
[php]
session_start();
$_session[“username”] = $uname;
$_session[“password”] = $pwd;
echo “”;
[/php]
and the second page i wrote the below:
[php]
session_start();
print $_session[“username”];
[/php]
when i execute the script, the error "Notice: Undefined variable: _session in C:InetPubwwwroothomelegance123test.php on line 3 " prompt.
Anybody can advise me how to resolve the above errors.
Thanks