When linking to a page on a secure server, I need to pass along the session id so I'm doing this:
$sessid=session_id();
<a href=
"https://domain/page.php?<? echo "thissession=$sessid";?>">click here</a>
THIS CODE WORKS FINE FOR ME, using IE 6, but not for someone else on his PC who also uses IE 6! In his case, the session id is not passed with the URL. In other words, in his status bar he sees: ...?thissession=
with just a blank for the session id (in the status bar, when he places his mouse on the link). So the next page does not receive the session id.
Any idea why this code would fail with his browser and not mine, and any work arounds?
Thanks so much for any ideas!