Jump to content

user management sessions


2tonejoe

Recommended Posts

ok. i have the mysql db setup with usernames, ids, passwords, access levels, etc .. . . I also have <?phpsession_start();?> in my template header. . .

 

what I am not understanding is how to store the $_SESSION['*****'] variables. I have seen come code, but it isn't clear. . . what is the easiest way to use the $_SESSION for my custom variables: something like $_SESSION['username'] = 'John Henry'; $_SESSION['userlevel'] = 'orange';

 

I understand I can send them from my login form using $_POST, but how do I set them??

Link to comment
Share on other sites

to set them...

$_SESSION['the_name_here'] = $its_value_here;

 

 

a Set session; this code would look like:

$_SESSION['the_name_here'];

 

 

to destroy them either all sessions

session_destroy();

 

 

of you can kill them individually / by group using

unset($_SESSION['name'], $_SESSION['name2']);

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.