I want to have two open sessions.
One to save user data and another to save shopping cart data.
It may or may not, try to rename the session but it still does not work.
EDIT: In this part of here I try to save the id of a product in the "car" session
$_SESSION['carro'][$id]
And here I keep the id and the name of the user that has been logged
$_SESSION['user']['id'] = $iD;
$_SESSION['user']['name'] = $usern;
I try to save variables in different sessions.