I have a login form, and once the user logs in it redirects them to
myalbum.php?username=$username
I have session variables running throughout my scripts
$_SESSION['username'];
$_SESSION['password'];
At the top of the myalbum.php file do I need to set
$username = $_SESSION['username'];
And then will it pull out all the information for the correct username? Im still a little shaky on the whole url query thing.
Thanks