Sessions with PHP

A

Anonymous

Guest
You do not need to use session_register anymore. After you call session_start() $_SESSION is just a normal array.


Also you can use $_POST instead of $HTTP_POST_VARS

I think you are confusing yourselft by using 2 different methods of handling sessions and predefined variables.
 
Back
Top