One form to another using PHP
I have a form with about 100 fields, okay a big form, which the user fills in. I then have it run through a .php script that sends the data fields back to me.
I now want if possible to set up a another form identical that is sent with the data that was supplied by the user back to my email address which I can print off.
At present i have to manually take the data from the email and sit and fill in the same form by hand with the data that i have sent to my email.
I am looking for a simple .php script that can do this.
I can code xhtml and forms and validate so alright on this end.
A simple tutorial that shows how to do a single form field, then extract the data and dynamically build another page that has the data displayed like the original will get me started and I can build from this. I hope to NOT have to use MySQL to do this at this stage.
I am really struggling to find any scipts or tutorials to show me this.
does this make sense. suggestions of anything at present.
I will also warn you the very basics of .php is what I know, but starting to learn.
Another method i can think of is leaving the data in a database and sending an email back to me to say the data has been supplied which in turn would call the data and input it into the form when I click a link in the email.