Guys I am trying to get the php page to store the following:
$redirectvalue = $_SERVER['PATH_INFO'];
setcookie("redirectcookie", $redirectvalue);
and then
retreive it/display on a different page using:
echo $_COOKIE['redirectcookie'];
However it never displays anything.. Is there something else I need to do? Or is there a way to check that this Server variable is accessable?
Other suggestions.
MIKE