I\'m trying to send the PHPSESSID via a HTTP GET variable for a cookie-less client.
I\'ve seen this in various drupal implementations where ?PHPSESSIONID=123AB
?PHPSESSIONID=123AB
Doing it manually:
if ($_REQUEST['token']) session_id($_REQUEST['token']); session_start(); print("foo=".$_SESSION['foo']++."". "link"); print("". "". "");