开发者

Really basic help w/ a php contact form

开发者 https://www.devze.com 2023-01-09 03:13 出处:网络
I feel like I must be missing something simple here... Nothing sends, nor do I receive the success message.

I feel like I must be missing something simple here... Nothing sends, nor do I receive the success message.

    <?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>


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

Add name="submit" to this for $_POST['submit'] to be set.

edit: $_POST['message'] may also not exist since it's name attribute is not set aswell.


Try with if (isset($_POST['name'])) in the first line. $_POST['submit'] is not set.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号