Anyway, the problem still exists after revised to $_SESSION["test"]=1; , Why? I hope to receive your favourable very soon.
Regards,
Simon
===============
Hey,maybe I can help you out.
In PHP 4.3.1,if you want to register a session,you should do the following:
session_start();
$_SESSION["test"]=1;
I have read some books which taught me to register session in an older way like this:
session_register("test");
However,it has many problems with that.So,I think you should try my method to register a session.
To unregister this session:
unset($_SESSION["test"]);
I hope I have done what you wanna do.
Love comes with condition(s).
...............................................
Dr.Freak