PHP does not store all variables in session
- by Flurin Juvalta
Dear all
I'm assigning session variables by filling the $_SESSION - Array throughout my script. My problem is, that for some reason not all variables are available in the session.
here is a shortened version of my code for explaining this issue:
session_start();
print_r($_SESSION);
$_SESSION['lang'] = 'de';
$_SESSION['location_id'] =…