I've set a session variable for printing form field errors ($_SESSION['error']). If the session variable is set, the script will return the user to the form with an appropriate error message.
The session variable is not being passed to the form page, but I am able to print out the variable on the script page by a simple echo, then exit() command which stops the script from redirecting.
What is keeping my variable from being passed to the form page? Both the script and form page have sessions initiated [ session_start() ].
Thanks in advance,
-Chris