提交from后,$ _ POST数组为空

时间:2019-01-14 00:24:27

标签: php html post html-form-post

我有一个简单的表单(如下),我想在电子邮件中发送“名称”字段,但POST为空。

HTML表单:

<form action="contact.php" method="post">
   <div class="form-group">
     <label for="name">Name:</label>
     <input type="text" class="form-control" id="name">
   </div>
   <button type="submit" class="btn btn-default">Submit</button>
</form>

PHP:

<?php
if (isset($_POST['name'])){
    $to = "example@example.com";
    $subject = "Test subject";
    $txt = $_POST['name'];
    $txt .= "test txt";
    $headers = "From: example2@example2.com" . "\r\n" .
    "CC: somebodyelse@example.com";
    if (mail($to,$subject,$txt,$headers)){
        echo "succes";
    }else{
        echo "failed";
    }
} else {
    echo "Name is required!";
}
?> 

有人知道有什么问题吗?我在此服务器上还有其他表格,它们工作正常。

1 个答案:

答案 0 :(得分:0)

输入必须具有name属性。

<input type="text" class="form-control" id="name" name="name">