由于某些原因,我的联系页面不会重新定位到thanks.html。它只停留在联系页面,联系表格消失。
<?php
if (empty($_POST) === false) {
$errors = array();
$name = $_POST['name'];
$email = $_POST['email'];
$message = $_POST['message'];
if (empty($name) === true || empty($email) === true || empty($message) === true) {
$errors[] = 'Name, email, and message are required.';
} else {
if (filter_var($email, FILTER_VALIDATE_EMAIL) === false) {
$errors[] = 'Please enter a valad email address.';
}
}
if (empty($errors) === true) {
mail('joe@mydomain.com', 'Contact Form' ,'$message', 'From: ' . $email);
header('Location: thanks.html');
exit();
}
}
?>
以下是表单中的代码。
<?php
if (empty($errors) === false) {
echo '<ul>';
foreach($errors as $error) {
echo '<li>', $error, '</li>';
}
echo '<ul>';
}
?>
</div>
<div id="content">
<form action="" method="post">
<p>
<label for="name">Name:</label><br />
<input type="text" name="name" id="name" <?php if (isset($_POST['name']) === true) { echo 'value="', strip_tags($_POST['name']), '"'; } ?> />
</p>
<p>
<label for="email">Email:</label><br />
<input type="text" name="email" id="email" <?php if (isset($_POST['email']) === true) { echo 'value="', strip_tags($_POST['email']), '"'; } ?>/>
</p>
<p>
<label for="message">Message:</label><br />
<textarea name="message" id="message"><?php if (isset($_POST['message']) === true) { echo strip_tags($_POST['message']), ''; } ?></textarea>
</p>
<p>
<input type="submit" />
</p>
</form>
</div>
任何人都可以快速解决此问题吗?这让我疯狂。我在上面的代码中一直在尝试这些行的不同变体,但没有任何工作......
if (empty($errors) === true) {
mail('joe@mydomain.com', 'Contact Form' ,'$message', 'From: ' . $email);
header('Location: thanks.html');
exit();
答案 0 :(得分:0)
我认为你很亲密,
<强>解强>
在
之后给它一个完整的地址重定向如果它正在发电子邮件,那么只需更改
标题('位置:thanks.html');
到
标题('位置:http://www.example.com/thanks.html');
同时替换
空($ name)=== true为空($ name)
你不需要指定为true,默认情况下需要
答案 1 :(得分:0)
如PHP manual page for header所述,您应该使用完整的网址重定向:
Note: HTTP/1.1 requires an absolute URI as argument to Location: including the scheme, hostname and absolute path, but some clients accept relative URIs. You can usually use $_SERVER['HTTP_HOST'], $_SERVER['PHP_SELF'] and dirname() to make an absolute URI from a relative one yourself:
您还可以使用javascript
重定向到感谢页面,如下所示:
if (empty($errors) === true) {
mail('joe@mydomain.com', 'Contact Form' ,'$message', 'From: ' . $email);
echo '<script type="text/javascript">'
, 'window.location.replace('thanks page complete url');'
, '</script>';
}