Having some issue with project and before I dig in deeper:
Can sessions from an exeout .exe file be passed to default browser?
Something like this on page in exe:
session_start();
// Set session variable
$_SESSION["math_key"] = $math_key;
and then read in browser like:
session_start();
$math_key = $_SESSION["math_key"];
Before spending hours debugging, want to make sure even feasible first.
I know there are ways like below (url), am I on right track or is this not possible?
$sessionValue = $_SESSION['math_key'];
$url = "https://example.com/next_page.php?session_value=" . urlencode($sessionValue);
1 post - 1 participant