Hello,
I need to show the results in the redirect url like below example. Can i format the redirect url html page like the email template?
Dear {nameofuser},
Thankyou for submitting the form. We have received below details from you:
Name:
Surname:
Address:
ABC:
XYZ:
Thankyou,
Devang
I need to show the results in the redirect url like below example. Can i format the redirect url html page like the email template?
Dear {nameofuser},
Thankyou for submitting the form. We have received below details from you:
Name:
Surname:
Address:
ABC:
XYZ:
Thankyou,
Devang
Hi,
First, Please try not to press the submit button more than once or not to refresh the submitted page because you are making too many copies of the same post!! B)
Regarding your question, it wont be a good idea to do it like this, the best is to write this at your "Onsubmit code" field in the form :
Regards
Max
First, Please try not to press the submit button more than once or not to refresh the submitted page because you are making too many copies of the same post!! B)
Regarding your question, it wont be a good idea to do it like this, the best is to write this at your "Onsubmit code" field in the form :
Dear <?php echo $_POST['name']." ".$_POST['surname']; ?>,
Thankyou for submitting the form. We have received below details from you:
Name:<?php echo $_POST['name']; ?>
Surname:<?php echo $_POST['surname']; ?>
Address: complete this like teh above examples.....
ABC:
XYZ:
Regards
Max
This topic is locked and no more replies can be posted.