View Single Post
  #11 (permalink)  
Old 03-11-10, 07:55 PM
wirehopper's Avatar
wirehopper wirehopper is offline
-
 
Join Date: Feb 2006
Posts: 2,515
Thanks: 20
Thanked 109 Times in 106 Posts
I don't think you need sessions or cookies here, or an autoresponder.

Use the mail function PHP: mail - Manual to send an email, then redirect with this:

PHP Code:

$nextpage=$_POST['mainquestion'].'.php';

if (
is_file($next_page)) header('location:'.$next_page);
else 
header('location:main.php'); 
Reply With Quote
The Following User Says Thank You to wirehopper For This Useful Post:
Tony S. (03-12-10)