I need to include a redirect page for the info submitted, please advise on how to include the "need to add" to the "current code"
Thanks for your help.
Current code
<form id="orderForm" name="orderForm" method="post" action="" onsubmit="return verify();">
Need to add:
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']; ?>
etc...
Thanks for your help.
Current code
<form id="orderForm" name="orderForm" method="post" action="" onsubmit="return verify();">
Need to add:
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']; ?>
etc...