OK, I've gotten myself into a design quandry and I'm not sure how to do this. I searched online manuals, sample code, even checked out a couple of library 'how to' books and I'm at a loss as to what I should do. Probably something simple, but ....you know.... "newbie" says it all, right?
I have an HTML page with a FORM -- different fields being enabled via "radio" buttons, etc. No problem here.
The 'Submit' buttons calls a php program with extensive edits based on the POSTed variables (ie: if($_POST['RdoType']== 'IA') { etc. where 'RdoType' is a radio button on the form for type of request). This page also works just fine...
At the bottom of this page are three buttons: "Back to Edit" which returns to the form's page to change entered values (works fine), "Cancel" which goes back to the page before the form page (also works fine), and a third button "Confirm" which I want to call another php generated page to do the actual writing to the mySQL database, generate an email to the user and another to our Case Administrator, and display a 'Confirmation Number' that the user can save.
The problem is, the $_POST variables don't exist in the second level php program...
What's the best way to get the 40 form fields into the second php program?