Someone knows if it's possible to start two different sessions at the same time?
What I'm trying to do is passing parameters between two different sessions. My code looks something like that:
session_name("SESS1");
session_start();
$VarToBePassed= $HTTP_SESSION_VARS["VarToBePassed"];
session_name("SESS2");
session_start();
session_register("VarToBePassed");
Obviously, this code doesn't work.
Any other suggestion to obtain the same result well also be appreciated.
Ciao and thanks.