Hi,
I am using PHP4 on Win2000 with IIS and am unable to retrieve session variables. I can set them with:
$_SESSION['key'] = $val;
This sets the value in the session file but I cannot retrieve this value if, for example, I use this in another subsequent page:
$thisVal = $_SESSION['key']...