i am trying to generate a thank you message for when an order form is
submitted for one of my clients.
i got the thank you message to show up and all of the info they submitted,
but i cant get the users name to appear after thank you.
for example: Thank you Ned Flanders for using I.P.I.S. below is the
information that you submitted:
right now i have it saying "Thank you for using I.P.I.S. below is the
information that you submitted:"
below is the thankyou.php file:
<?php
//--------------------------------------------------------------------------------------------------------------------------------
ob_start();
session_start();
echo "Thank you for using I.P.I.S. below is the information that you submitted:<br><br>";
echo $_REQUEST["str_submit"];
?>
if you need to see the actul order form page here is a link:
http://theindependentinspectors.com/order_form.html
I need to find a way to echo the text to the thankyou.php page that is entered in the "Ordered By:" field of the order form.
can anyone help me?
thank you