Rom*_*sch 4 php arrays session
I fill a session like this:
$_SESSION[$id]=$value;
Run Code Online (Sandbox Code Playgroud)
And I'm reading out the array with this:
foreach($_SESSION AS $value){...}
Run Code Online (Sandbox Code Playgroud)
But how can I read out the $id of the session too? Array key?
Thanks!
foreach($_SESSION as $key => $value){
}
Run Code Online (Sandbox Code Playgroud)
http://br2.php.net/manual/en/control-structures.foreach.php