0

我刚刚安装了一个使用 php 的反馈表,但我对这种语言非常陌生。

表单本身正在工作。我的问题是这样的:

目前,表单在提交时会回显“谢谢”字符串。我可以让它将用户重定向到 html 页面吗?

这是我的php代码:

    <?php
    $name = $_POST['name'];
    $email = $_POST['email'];
    $message = $_POST['message'];
    $from = 'From: Myname'; 
    $to = 'info@mydomain.com'; 
    $subject = 'mydomain.com feedback';
    $human = $_POST['human'];
    $answers = array('red','Red');  

    $body = "From: $name\n E-Mail: $email\n Message:\n $message";

    if ($_POST['submit'] && in_array($human,$answers)) {                 
        if (mail ($to, $subject, $body, $from)) { 
        echo '<p>Thanks!</p>';
    } else { 
        echo '<p>Something went wrong!</p>'; 
    } 
    } else if ($_POST['submit'] && !in_array($human,$answers)) {
    echo '<p>You ansered the captcha wrong!</p>';
    }
    ?>
4

2 回答 2

0

而不是回声'<p>Thanks!</p>';

只需将其更改为header()函数...

并直接访问您想访问的任何 URL...

例子....

if (mail ($to, $subject, $body, $from)) { 
   header('Location: http://www.example.com/');
} else {
于 2013-06-12T21:09:06.690 回答
-1

是的,您可以使用标题位置。看看: http: //php.net/manual/en/function.header.php

于 2013-06-12T21:09:18.433 回答