I read about the "confirmation page" and it makes perfect sense. BUT. How/where do I link the submission form and the confirmation page?
I'm just confused about how to tie them all together with the forms. Thanks.
Ronda
<SCRIPT LANGUAGE="php">
$email = $HTTP_POST_VARS[email];
$mailto = "ruth@rudesign.co.uk";
$mailsubj = "Form submission";
$mailhead = "From: $email\n";
reset ($HTTP_POST_VARS);
$mailbody = "Values submitted from web site form:\n";
while (list ($key, $val) = each ($HTTP_POST_VARS)) {
$mailbody .= "$key : $val\n"; }
mail($mailto, $mailsubj, $mailbody, $mailhead);
</SCRIPT>
<META HTTP-EQUIV="Refresh" Content="5; URL=welcome.html">
I'm just confused about how to tie them all together with the forms. Thanks.
Ronda
<SCRIPT LANGUAGE="php">
$email = $HTTP_POST_VARS[email];
$mailto = "ruth@rudesign.co.uk";
$mailsubj = "Form submission";
$mailhead = "From: $email\n";
reset ($HTTP_POST_VARS);
$mailbody = "Values submitted from web site form:\n";
while (list ($key, $val) = each ($HTTP_POST_VARS)) {
$mailbody .= "$key : $val\n"; }
mail($mailto, $mailsubj, $mailbody, $mailhead);
</SCRIPT>
<META HTTP-EQUIV="Refresh" Content="5; URL=welcome.html">
Comment