Forum Moderators: coopster
1 - Send me an email with their responses.
2 - Take them to a results page that shows them content regarding what they answered in the form.
My setup so far:
I'm designing in php. My host is using FormMail.cgi to send the emails (I can't change this). My results page is using the
$_POST['value']
function to determine what results to display.
My issue is this: When using the POST method in my survey form, my results page works wonderfully. It sees all the form field values passed from the form, and processes my if/else statements correctly. Now, if I configure my form action to POST to FormMail.cgi, and I use my results page as the redirect, will the POST values move to the results page, or are they dropped immediately upon FormMail processing the POST values?
I hope this rambling makes sense.
Thanks,
Chris
I am currently working on inserting the form values into the redirect URL, but I haven't had any luck so far.
Here is the last one I tried (that didn't work)
hxxp://www.sitename.com/test/results.php?q1=<?php echo $_POST['q1']?>&q2=<php echo $_POST['q2']?>
I can't figure out where I'm going wrong..