PHP联系表格不正常

时间:2014-12-07 20:07:57

标签: php html forms email

我一直在处理联系表格。我添加了使用POST方法将其发送到设置的电子邮件地址。它似乎并没有起作用。它只是运行和停止,就像代码被破坏一样。 HTML和PHP如下。

<form action="contact-form.php" method="post" id="contact-form" name="contact-form">
                    <div class="form-group">
                        <label for="name">Your name</label> <input class=
                        "form-control" id="name" name="name" type="text">
                    </div>

                    <div class="form-group">
                        <label for="email">Email address</label>
                        <input class="form-control" id="email" name="email"
                        type="email">
                    </div>

                    <div class="form-group">
                        <label for="phone">Phone</label> <input class=
                        "form-control" id="phone" name="phone" type="text">
                    </div>

                    <div class="form-group">
                        <label for="message">Your message</label> 
                        <textarea class="form-control" id="message" name=
                        "message" rows="6">
                        </textarea>
                    </div>

                    <div class="submit">
                        <input class="button button-small" type="submit"
                        value="Send">
                    </div>
                </form>



<?php

if(isset($_POST['submit'])) {
    $to = "gfrazer@hotmail.co.uk";
    $from = $_POST['email'];
    $name = $_POST['name'];
    $phone = $_POST['phone'];
    $message = $name . " " . " wrote the following: " . "\n\n" . $_POST['message'];

    $headers = "From:" . $from;
    $headers2 = "From:" . $to;
    mail($to,$subject,$message,$headers);
    mail($from,$subject2,$message2,$headers2); // sends a copy of the message to the sender
    header('Location: http://www.google.co.uk');
}

?>

1 个答案:

答案 0 :(得分:2)

您需要为提交按钮添加名称。从你的snippit,你没有$_POST['submit']

<form action="contact-form.php" method="post" id="contact-form" name="contact-form">
    <div class="form-group">
        <label for="email">Email address</label>
        <input class="form-control" id="email" name="email" type="email">
    </div>

    <div class="form-group">
        <label for="phone">Phone</label> <input class="form-control" id="phone" name="phone" type="text">
    </div>

    <div class="form-group">
        <label for="message">Your message</label> 
        <textarea class="form-control" id="message" name="message" rows="6"></textarea>
    </div>

    <div class="submit">
        <!-- ADD name="submit" -->
        <input name="submit" class="button button-small"  type="submit" value="Send" />
    </div>
</form>