ok, here is the deal... I have a form that submits to a php script on the server and then generates an email. what i need to do is have that php code generate a thank you page. in that thank you page i have a java script that is going to generate a cookie with 2 of the fields from the information captured. HOW DOES A DESIGNER MAKE THIS HAPPEN LOL!!! :-)
here is my php script handling the information:
<?php
if(!$contact)$contact='bhays@hiddenmind.com';
mail($contact,"$subject".date('m/d/Y',time()),"software: $software\nFirst: $first\nLast: $last\nEmail: $email\nCompany: $company\nHow did you hear about HiddenMind: $referrer\nTitle: $title\nPhone: $areacode $phone ext: $ext\nFax: $fax\nAddress: $address\nIndustry: $industry\nTime for Deploying: $time\nTarget Device: $device1,$device2,$device3,$device4,$device5,$device6\nOther Devices: $other_device\nMulti Modal Components: $multi_modal1,$multi_modal2,$multi_modal3,$multi_modal4\nOther Multi Modal: $other_multi_modal\nUpdate: $update\nUpdate When: $update_when", "From: $email");
Header("Location: $response");
?>
Any direction would help. forms is about the extent of my programming, and i have no idea how to generate the thank you page.
Thanks,
B