Jump to content

Session


gple

Recommended Posts

I am developing a shopping cart and I just want to know how I would define two or more distinct sessions at the same time. Ie if one user comes in, how do I define one session with one name and another session with another name.

Link to comment
Share on other sites

Im guessing u need smth like this:

 

//if user logins correctly
session_start();
$_SESSION['username'] = 'John Smith';
$_SESSIoN['type'] = 'moderator'; 

 

U can create even 10 session variables for one user this way. But maybe this wasnt what u were asking.

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.