having the following issues:
any help would be great!!
1- not receiving form fields in email- just receiving:
values submitted from website:
2- sometimes it does not allow me to click in the form field to complete form
Here is my php script:
<HTML>
<HEAD>
<TITLE>Serenity Moving Services</TITLE>
</HEAD>
<BODY>
<H2>We Look Forward To Servicing You!</H2>
<?PHP
$email = $HTTP_POST_VARS[email];
$mailto = "order@serenitymovingservices.com";
$mailsubj = "Free Quote Request";
$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";
echo $key." : ".$val."<br />";
}
mail($mailto, $mailsubj, $mailbody, $mailhead);
</SCRIPT>
<META HTTP-EQUIV="Refresh" Content="0; URL=contact-serenity-moving-thank-you.html">
?>
</BODY>
</HTML>
any help would be great!!
1- not receiving form fields in email- just receiving:
values submitted from website:
2- sometimes it does not allow me to click in the form field to complete form
Here is my php script:
<HTML>
<HEAD>
<TITLE>Serenity Moving Services</TITLE>
</HEAD>
<BODY>
<H2>We Look Forward To Servicing You!</H2>
<?PHP
$email = $HTTP_POST_VARS[email];
$mailto = "order@serenitymovingservices.com";
$mailsubj = "Free Quote Request";
$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";
echo $key." : ".$val."<br />";
}
mail($mailto, $mailsubj, $mailbody, $mailhead);
</SCRIPT>
<META HTTP-EQUIV="Refresh" Content="0; URL=contact-serenity-moving-thank-you.html">
?>
</BODY>
</HTML>
Comment