I am somewhat new to php, I have enough of the basics down that I can user php to display the webpages and a few other fuctions.
I am having problems with a sign up page. What I would like it to do is post the information from the first form onto a confirmation page so the users can verify the information they submitted. Once they have all the information on the confirmation page correct, I want to send that information to an email address and direct the users to a thank you page that will be printer friendly with the information they submitted in the form. Unfortunatley I do not have any database access.
I am under the impression I need to use hidden forms on the confirmation page, however, when I try to use them I get parse errors.
To gather the information on the confirmation page, I am using the if commands....
if ($Name) {
print ("$Name"); }
else {
print ("Please enter your name"); }
The sign up page has 5 basic areas, personal information, product 1, product 2, billing information, and some information for tracking purposes, like their IP and host names. If product 1 is not selected from the sign up page. If product 1 is not selected, and product 2 is selected, only product 2 will be displayed on the confirmation page.
Is there any way to get the information that is posted on the confirmation page sent through an email to me? Like I said, I am under the impression that it is using a hidden input type, but I am not sure how to implement this if this is the way to accomplish this.
Any help will be much appreciated.