$session = &$_SESSION;
I acces $_SESSION by this var: $session;
How can I remove $_SESSION var without deleting its content ?
I want to can acces session data only from $session var.
Can you please give me any solution?
Note: I don't need to know if it's helpful or not.
Edit:
I get session's address (&$_SESSION) because I want also to make live modifications in $_SESSION (but using $session var).
I want my $session modifications to exists (in $_SESSION) after refresh page, but I don't want to can access directly $_SESSION.