I have declared a session in main window
session_start();
$_SESSION['language']=$choosen;
And then, I'm opening a pop up which calls this variable and try to echo it:
echo $_SESSION['language'];
But I get simply nothing, I have tried with isset() but it doesn't work...