suppose I need the variable 'loginUsername' to be global to a sesssion.
so first thing i do,
session_register("loginUsername");
I have a showUserStatus() in another script that I want to print out the value in loginUsername. How do I use the $_SESSION variable to acutally get the value of loginUsername?
so first thing i do,
session_register("loginUsername");
I have a showUserStatus() in another script that I want to print out the value in loginUsername. How do I use the $_SESSION variable to acutally get the value of loginUsername?