Can anyone tell me how to access the values in an array that's stored in the $_SESSION global array.
how would i get to the value if say $car is an array that's stored in $SESSION like $SESSION["car"]
I would do something like this:
$carArray = $_SESSION["car"];
$carArray should now hold the array that was in $_SESSION["car"].
Well, if you know the keys in the array, you could just
echo $_SESSION['car']['knownValue'];