0

由于某种原因,我的联系页面不会重新定位到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();
4

2 回答 2

0

我觉得你很亲近

解决方案

给它一个完整的地址以重定向

如果它正在发送电子邮件,那么只需更改您的


header('位置:谢谢.html');

header('位置:http ://www.example.com/thanks.html ');

也换

空($name) === true 为空($name)

您不需要指定为 true,默认情况下会采用


于 2013-09-17T19:54:23.757 回答
0

正如标题的 PHP 手册页指出的那样,您应该真正使用完整的 URL 来重定向:

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>'; 
}
于 2013-09-17T19:56:28.057 回答