I'm not sure what you are asking, but I think you are looking to get another session from another user. If this is the case, then I wouldn't recommend it and it's not really possible. Sessions are individual to each browser session (unless specified otherwise through cookies).
If you are asking to retrieve your sessions from your own user from another computer, then again, the default session behaviour is not really made to do this. You would need to implement your own session manager that probably uses a database and keeps track of which session is for which user (user id probably) so it can load it on another computer. I wouldn't recommend this either because you're getting into another whole ball of wax, per say.
If you are trying to keep track of data across user logins and computers, I would recommend using a user settings table. Here you can track the settings that the user has and load them each session or even each page load without having to modify the session handler.
If from your title you are wanting to get a list of currently active sessions, then simply record the last hit time of each user in a table and display that data, having a set time when you consider the session inactive.