我有一个 php 邮件表单(工作正常),当前重定向到感谢页面。我正在改造网站,并希望(而不是重定向到另一个页面)(在成功提交后)出现一个模式弹出窗口并说谢谢。我还需要清除表单,因为用户将停留在当前页面上。我已经搜索(在 stackoverflow 和网络搜索上)寻找解决方案。我发现了一些“想法”,但没有任何效果。我目前正在网站上的其他内容上使用模式弹出窗口(自改版以来),并且通常了解它们的工作原理。我对php也有基本的了解。我在想是否可能(?)在标题中使用某种类型的 javascript 来调用模式弹出窗口。我也看到了它需要 AJAX 的想法。
任何帮助将不胜感激。
这是我的表单html:
<p class="formrequired">Required fields are marked with an asterisk(*)</p>
<form action="form.php" method="post">
<ol class="forms">
<li><label for="first_name">*First Name</label><input type="text" name="first_name"/></li>
<li><label for="last_name">Last Name</label><input type="text" name="last_name"/></li>
<li><label for="email">*Email</label><input type="text" name="email"/></li>
<li><label for="comment">*Message</label><textarea name="comment"cols="45" rows="5"></textarea></li>
<li><input type="submit" value="Submit" class="submit"/>
</ol>
</form>
和我的 php:
<?php
$myemail = "person@email.com";
$first_name = check_input($_POST['first_name'], "Please enter your first name");
$last_name = check_input($_POST['last_name']);
$email = check_input($_POST['email']);
$comment = check_input($_POST['comment'], "Please enter your message");
if (!preg_match("/([\w\-]+\@[\w\-]+\.[\w\-]+)/", $email))
{
show_error("E-mail address is not a valid email address");
}
$subject="New form submitted on Napoleonville Fire";
$message = "Hello Jordy!
Your contact form has been submitted by:
First Name: $first_name
Last Name: $last_name
E-mail: $email
They left the following message:
$comment
End of message.
";
mail($myemail, $subject, $message);
header('Location: thankyou.html');
exit();
function check_input($data, $problem='')
{
$data = trim($data);
$data = stripslashes($data);
$data = htmlspecialchars($data);
if ($problem && strlen($data) == 0)
{
show_error($problem);
}
return $data;
}
function show_error($myError)
{
?>
<html>
<body>
<b>Please correct the following error:</b><br />
<?php echo $myError; ?>
</body>
</html>
<?php
exit();
}
?>
再次感谢您的任何帮助。
如果可以解决,我将有一个“第 2 部分”。