continued from thread434-944096
I have a PHP website in which a user's login is stored in the $_SESSION[] array. The current contents:
$_SESSION['username'] = username;
$_SESSION['password'] = password;
$_SESSION['id'] = id;
The id is taken from a database containing each username and password and a unique id.
Where is this information stored? How does it react with cookies? Should I put it in my <a> tags?
Thank you!
--Chessbot
"See the TURTLE of enormous girth!"
-- Stephen King, The Dark Tower series
I have a PHP website in which a user's login is stored in the $_SESSION[] array. The current contents:
$_SESSION['username'] = username;
$_SESSION['password'] = password;
$_SESSION['id'] = id;
The id is taken from a database containing each username and password and a unique id.
Where is this information stored? How does it react with cookies? Should I put it in my <a> tags?
Thank you!
--Chessbot
"See the TURTLE of enormous girth!"
-- Stephen King, The Dark Tower series