Jump to content

Session Variables - 2 Questions


scott212

Recommended Posts

I've seen people use session variables with a second indexes like this: [tt]$_SESSION['id_01']['id_02'][/tt]
I can't seem to find any documentation on this method, anyone have any links? If it works like it seems, what would the syntax be to iterate through the second indexes within the confines of a first id? Such as if I had:

[tt]$_SESSION['basket']['01'], $_SESSION['basket']['02'], $_SESSION['basket']['03'][/tt]

How could I iterate through the different items in 'basket' using a foreach or for loop?
Link to comment
Share on other sites

The $_SESSION array is just like any other array. What your looking at is just a multidimensional array. To loop through it (as per your example)...

[code=php:0]
foreach($_SESSION['basket'] as $var) {
  echo $var;
}
[/code]
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.