51

我在这里查看了一些示例,但其中很多对于我对 PHP 的掌握来说太高级了,或者他们的示例对于他们自己的项目来说太具体了。我目前正在努力处理 PHP 表单的一个非常基本的部分。

我正在尝试创建一个带有几个复选框的表单,每个复选框都分配了一个不同的值,我希望将它们发送到一个变量(数组?),我可以稍后回显/使用,在我的情况下,我将发送选中的值一封电邮。

到目前为止,我已经尝试了一些变化,但我最接近它的是这个......

<form method='post' id='userform' action='thisform.php'>
<tr>
    <td>Trouble Type</td>
    <td>
    <input type='checkbox' name='checkboxvar' value='Option One'>1<br>
    <input type='checkbox' name='checkboxvar' value='Option Two'>2<br>
    <input type='checkbox' name='checkboxvar' value='Option Three'>3
    </td>
</tr>
</table>
<input type='submit' class='buttons'>
</form>

<?php
$checkboxvar[] = $_REQUEST['checkboxvar'];
?>

我会将 $checkboxvar[] 回显到我的电子邮件中。我会完全错了吗?我的另一个想法是使用大量的 if 语句。

4

6 回答 6

87
<form method='post' id='userform' action='thisform.php'> <tr>
    <td>Trouble Type</td>
    <td>
    <input type='checkbox' name='checkboxvar[]' value='Option One'>1<br>
    <input type='checkbox' name='checkboxvar[]' value='Option Two'>2<br>
    <input type='checkbox' name='checkboxvar[]' value='Option Three'>3
    </td> </tr> </table> <input type='submit' class='buttons'> </form>

<?php 
if (isset($_POST['checkboxvar'])) 
{
    print_r($_POST['checkboxvar']); 
}
?>

您将表单名称作为数组传递,然后您可以使用 var 本身访问所有选中的框,该 var 本身就是一个数组。

要将选中的选项回显到您的电子邮件中,您可以执行以下操作:

echo implode(',', $_POST['checkboxvar']); // change the comma to whatever separator you want

请记住,您应该始终根据需要清理您的输入。

作为记录,官方文档存在: http: //php.net/manual/en/faq.html.php#faq.html.arrays

于 2012-12-24T23:08:52.503 回答
22

[]在输入标签中添加属性的名称

 <form action="" name="frm" method="post">
<input type="checkbox" name="hobby[]" value="coding">  coding &nbsp
<input type="checkbox" name="hobby[]" value="database">  database &nbsp
<input type="checkbox" name="hobby[]" value="software engineer">  soft Engineering <br>
<input type="submit" name="submit" value="submit"> 
</form>

对于 PHP 代码:

<?php
 if(isset($_POST['submit']){
   $hobby = $_POST['hobby'];

   foreach ($hobby as $hobys=>$value) {
             echo "Hobby : ".$value."<br />";
        }
}
?>
于 2013-11-01T20:01:53.080 回答
5

试试这个,通过 for Loop

<form method="post">
<?php
for ($i=1; $i <5 ; $i++) 
{ 
    echo'<input type="checkbox" value="'.$i.'" name="checkbox[]"/>';
} 
?>
<input type="submit" name="submit" class="form-control" value="Submit">  
</form>

<?php 
if(isset($_POST['submit']))
{
    $check=implode(", ", $_POST['checkbox']);
    print_r($check);
}     
?>
于 2017-04-19T07:13:06.597 回答
4

您需要使用方括号表示法将值作为数组发送:

<form method='post' id='userform' action='thisform.php'>
<tr>
    <td>Trouble Type</td>
    <td>
    <input type='checkbox' name='checkboxvar[]' value='Option One'>1<br>
    <input type='checkbox' name='checkboxvar[]' value='Option Two'>2<br>
    <input type='checkbox' name='checkboxvar[]' value='Option Three'>3
    </td>
</tr>
</table>
<input type='submit' class='buttons'>
</form>

但请注意,只会发送仅选中复选框的值。

于 2012-12-24T23:09:12.597 回答
1

还请记住,您可以像这样将自定义索引包含到发送到服务器的数组中

<form method='post' id='userform' action='thisform.php'>
<tr>
    <td>Trouble Type</td>
    <td>
    <input type='checkbox' name='checkboxvar[4]' value='Option One'>4<br>
    <input type='checkbox' name='checkboxvar[6]' value='Option Two'>6<br>
    <input type='checkbox' name='checkboxvar[9]' value='Option Three'>9
    </td>
</tr>
<input type='submit' class='buttons'>
</form>

当您想要使用id服务器阵列中的单个对象accounts (例如)将数据发送回服务器并在服务器上识别相同时,这特别有用

<form method='post' id='userform' action='thisform.php'>
<tr>
    <td>Trouble Type</td>
    <td>
    <?php foreach($accounts as $account) { ?>
        <input type='checkbox' name='accounts[<?php echo $account->id ?>]' value='<?php echo $account->name ?>'>
        <?php echo $account->name ?>
        <br>
    <?php } ?>
    </td>
</tr>
<input type='submit' class='buttons'>
</form>

<?php 
if (isset($_POST['accounts'])) 
{
    print_r($_POST['accounts']); 
}
?>
于 2019-12-27T07:56:21.080 回答
-1
if (isset($_POST['submit'])) {

for($i = 0; $i<= 3; $i++){

    if(isset($_POST['books'][$i]))

        $book .= ' '.$_POST['books'][$i];
}
于 2016-10-06T08:35:16.543 回答