I want to save a password in a session variable, and I tried it that way:
$pwd="pwd";
session_start();
session_register("pwd");
on the next page I want to varify the password so I started the session with "session_start(); and the I thought I can access the varable via "$pwd" (register_globals is activated), but somehow, the value of $pwd is null... what did I do wrong???
seb