如何通过PHP从HTML表单发送多个复选框响应?

时间:2012-08-16 14:41:13

标签: php forms

我已设置联系表单,并将其设置为通过电子邮件将回复通过电子邮件发送给电子邮件帐户。表单的一部分是一系列复选框,我需要将它们作为列表显示在电子邮件中。这是我下面的代码,它现在返回'Array'而不是复选框的值。有什么建议吗?

HTML:

<h3>Service required:</h3>
<input type="text" id="name" name="name" placeholder="Name" required />
<input type="email" id="email" name="email" placeholder="Email" required />
<input class="check-box styled" type="checkbox" name="service[]" value="Service / repairs" /><label> Service / repairs</label>
<input class="check-box styled" type="checkbox" name="service[]" value="MOT" /><label> MOT</label>
<input class="check-box styled" type="checkbox" name="service[]" value="Cars for sale" /><label> Cars for sale</label>

这是php:

<?php
    if (isset($_POST['service'])) {
    $service = $_POST['service'];
    // $service is an array of selected values
}
$formcontent= "From: $name \n Service(s) required: $service \n";
$recipient = "name@email.com";
$subject = "You have a new message from $name";
$mailheader = "From: $email \r\n";
mail($recipient, $subject, $formcontent, $mailheader) or die("Error!");
echo "Thank You! We will get back to you as soon as we can.";
?>

谢谢,

杰森

4 个答案:

答案 0 :(得分:4)

您应该将数组元素(例如,使用','内爆)加入字符串。

<?php
$formcontent= "From: $name \n Service(s) required: ".implode(", " ,$service)." \n";
?>

答案 1 :(得分:1)

为什么不循环遍历数组以获得所需的结果到字符串?

if (isset($_POST['service'])) {
    $service = $_POST['service'];
    // $service is an array of selected values
    $service_string = "";
    for($i=0;$i<count($service);$i++)
    {
        if($i!=0)
        {
            $service_string = $service_string . ", ";
        }
        $service_string = $service_string . $service[$i];
    }
}

然后,您将获得每个勾选项目的逗号分隔列表的输出为$ service_string。

答案 2 :(得分:1)

由于几个复选框存储在$_POST['service']中,因此它本身就是一个数组,并且已经变成了二维的。它的不同索引可以这样访问:$_POST['service'][0]

要对$_POST['service']执行某些操作,您可以使用foreach循环遍历所有索引:

foreach($_POST['service'] as $post){
    //Do stuff here
}

或者,使用implode()简单地连接所有索引。

答案 3 :(得分:0)

您的输入类型checkbix必须具有唯一的名称。否则,最后一个复选框将在$ _POST中找到。或者你可以像上面讨论的那样循环。制作您的电子邮件html格式并将一串html写入$ formcontent。 e.g。

$formcontent = "<html><head></head><body>";
$formcontent .= "<ul><li>".$_POST["checkbox1"]."</li>";
$formcontent .= "<li>".$_POST["checkbox2"]."</li>";
$formcontent .= "</ul></body></html>";

以html格式编写电子邮件,请参阅php网站上的邮件功能。