I don't think there's a limit on how many $_SESSION vars you can have, but you would call the variables like so:
$_SESSION['name_of_variable'];
In other words, if you have set a session variable called 'user_name', you would call it like:
$_SESSION['user_name'];
Since $_SESSION is an array, if you wanted to see all the variables, you could do:
foreach($_SESSION as $key => $val) {
echo "$key: $val";
}