Re: [PHP] reposting data into forms after confirmation screen

2003-07-07 Thread Dean E. Weimer
Alternately, you could place code similar to this in your first form. echo "" When you first access this form it would output: And when returning, assuming that your edit button is on a form posting the data: > You could save all of the form data in session variables, when they > click edit re

Re: [PHP] reposting data into forms after confirmation screen

2003-07-07 Thread Matt Matijevich
You could save all of the form data in session variables, when they click edit re-populate the form fields with the session data. >>> "Artoo" <[EMAIL PROTECTED]> 07/07/03 04:00PM >>> Anyone know where I can view some sample code that does the following? When the user clicks on SUBMIT, they are ta

[PHP] reposting data into forms after confirmation screen

2003-07-07 Thread Artoo
Anyone know where I can view some sample code that does the following? When the user clicks on SUBMIT, they are taken to a confirmation screen which they can click an EDIT button or SUBMIT button. If they click on the EDIT button they are taken back to the first form. How do you repost the data th