I have a Main.php file the gets data from the user. Main.php then loads
Verify.php. Based on the input, Verify.php will load a page. An extract of
Verify.php looks like:
if($IN = "A") {
header("Locatio n: A.php");
exit;
} else {
header("Locatio n: B.php");
exit;
}
Now, my problem. I want to pass "$IN" to the routines I load with header().
How do I do this? Using $_GET is not an acceptable way as this data is
sensative.
Is there some other way to load a page other then header()?
Thanks...
Bruce A. Julseth
Verify.php. Based on the input, Verify.php will load a page. An extract of
Verify.php looks like:
if($IN = "A") {
header("Locatio n: A.php");
exit;
} else {
header("Locatio n: B.php");
exit;
}
Now, my problem. I want to pass "$IN" to the routines I load with header().
How do I do this? Using $_GET is not an acceptable way as this data is
sensative.
Is there some other way to load a page other then header()?
Thanks...
Bruce A. Julseth
Comment