Maybe this is a bug or maybe I'm half retarded, either way, it seems that you cannot register session variables with register_globals off.
If you have register_globals off then when it registers the session it does not input a value.
Example:
$name = "billybob";
session_register("name");
In the session file it will write:
!name|
Because there is no value. Is this a bug? I there a work around besides having to have register globals on?
Derek