Will the following lines set up a session by the name of "hasLoggedIn" with
HTTP_SESSION_VARS["username"]?
$stuff = session_name("hasLoggedIn");
$HTTP_SESSION_VARS["username"] = $username;
session_start();
I am trying to create a page that sets a session variable upon successful
login, problem is, the session_name() never changes it always remains the
default PHPSESSID what am I doing wrong now?
I fixed the problem with multiple files, that was bizarre!
Thanx
Phil
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php