Hi
I want to pass a couple of variables to construct, from the webpage that hosts it.
eg index.html?sessionId=23
or in php it could be
$sessionId = isset($_SESSION["session_id"]) ? $_SESSION["session_id"] : "---";
How can I access session variable when construct starts up?
thanks
ben