I have a page (index.php) that has a form on it. The form calls the index.php as it's action. When the the form is submitted a variable is set to tell php to do some validation. If the validation fails, the page is displayed with error messages. If validation is a succes, php redirects to a print page. This page needs to receive all the variables so it can display them on the page.
The problem is that when the page is redirected, all variables are lost. And there is nothing to print. 🙁
What is the best way to accomplish this?
TIA,
clcope