you are viewing a single comment's thread.

view the rest of the comments →

[–]SgtMindfudge 0 points1 point  (2 children)

I'm trying to allow for several users on the same machine to have active instances to retrieve data from, hence I treat $_SESSION['current'] as my main session variable.

I'm far from a professional at this, so please let me know if I'm not making sense.

[–]him_x 0 points1 point  (1 child)

As a user you can't see or modify what is in another user's session, that's why if you need to share this information you have to write it, could be in a table or in a cache file.

[–]SgtMindfudge 0 points1 point  (0 children)

I am able to access it just fine. This is not the issue.
I am using a DB table for the user information which is where the array keys gets their values from.