0

我觉得我必须在这里遗漏一些简单的东西......什么都没有发送,我也没有收到成功消息。

    <?php
if(isset($_POST['submit'])) {
$to = "michael@yahoo.com";
$subject = "Feedback Form";
$name_field = $_POST['name'];
$email_field = $_POST['email'];
$message = $_POST['message'];

$body = "From: $name_field\n E-Mail: $email_field\n Message:\n $message";

mail($to, $subject, $body);

$emailSent = true;
}
?>

<!DOCTYPE html>
<html>
<head>
    <title>Feedback Form</title>

    <link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
  <div id="wrapper">

    <h1>Feedback Form</h1>

    <?php if($emailSent == true) { //If email is sent ?>
    <p><strong>Feedback Successfully Sent!</strong></p>
    <?php } else  {?>
    <h3>Please submit your feedback</h3>
    <?php } ?>  

    <form id="contactForm" action="index.php" method="post">

        <label for="name">Name:</label>
        <input type="text" name="name" id="name" class="required" minlength="2"/>
        <br/>
        <label for="email">Email:</label>
        <input type="text" name="email" id="email" class="required email"/>
        <br/>
        <label for="occupation">Occupation:</label>
        <select name="occupation" id="occupation" class="required">
            <option value="librarian">Librarian</option>
            <option value="student">Student</option>
            <option value="other">Other</option>
        </select>
        <br/>
        <label for="message">Message:</label>
        <textarea id="message" class="required" minlength="5"></textarea>
        <br/>
        <input class="submit" type="submit" value="Send" />


    </form>


  </div><!--end wrapper-->  

    <script type="text/javascript" src="http://www.google.com/jsapi"></script>
    <script type="text/javascript">
        google.load("jquery", "1.4.2");
    </script>
    <script type="text/javascript" src="/js/jquery.validate.pack.js"></script>
    <script type="text/javascript" src="scripts.js"></script>
</body>
</html>
4

2 回答 2

1
<input class="submit" type="submit" value="Send" />

添加name="submit"到此$_POST['submit']以进行设置。

编辑:$_POST['message']也可能不存在,因为它的 name 属性也没有设置。

于 2010-07-26T18:06:39.653 回答
0

if (isset($_POST['name']))在第一行尝试。$_POST['submit']未设置。

于 2010-07-26T18:07:14.523 回答