Hello,
I'm sure you have seen ths question before, but what I need is the proper code to add a redirect to my form processing php file.
I've tried adding a header, but I must be doing it wrong because I keep getting an error.
Here's a copy of the simple code I'm using:
<?PHP
$to = "higinv@aol.com";
$msg .= "This message has been sent from your Feedback Form\n\n";
$msg .= "Feedback: $feedback\n";
mail($to, $Name, $msg, "From: Feedback Form\nReply-To:
$Email\n");
?>
I just need it to redirect back to my index page after it has been submitted.
thanks for the help