如何保存附带复选框的输入字段?

时间:2016-07-25 03:48:53

标签: php mysql phpmyadmin

我有一个带有附带输入文本字段的复选框列表。如果用户选中一个框,则附带的文本字段将添加到数组中。

我是PHP新手,想知道是否有人可以帮助我朝着正确的方向前进。

我应该使用for循环,foreach,while,unique" name"对于每个输入,还是其他什么?

以下是我到目前为止的情况。

from sys import argv   

script, filename = argv   

txt = open(filename)       
print "Here's your file %r:" % filename   
print txt.read()                     
print "Type the filename again:"
file_again = raw_input("> ")         

txt_again = open(file_again)           

print txt_again.read()          `

3 个答案:

答案 0 :(得分:0)

试试这个:

 $select = array();
 foreach($_POST['check'] as $key => $selected){
    $select[$key] = $selected;
 }

答案 1 :(得分:0)

请试试这个:

<?php

if(isset($_POST['submit'])){

for($i=0; $i<100; $i++)
{
    if($_POST['check_'.$i])
    {
        $array[] = $_POST['input_'.$i];
    }
}
}
?>
#################### HTML
<form method="post" action="">
<?php for($i=0; $i<100; $i++) { ?>
<input type="checkbox" name="check_<?php echo $i ?>"><input type="text" name="input_<?php echo $i ?>">
<?php } ?>
<input type="submit" name="submit">
</form>

答案 2 :(得分:0)

首先,您需要一种方法将复选框与相应的文本字段相关联,以及将它们区分开来的方法。例如:

<form>
<input type="checkbox" name="check[]" value="1"><input type="text name="text1">
<input type="checkbox" name="check[]" value="2"><input type="text name="text2">
<input type="checkbox" name="check[]" value="3"><input type="text name="text3">
</form>

现在你可以按如下方式遍历它:

if ($_SERVER['REQUEST_METHOD'] == 'POST') {
    if (isset($_POST['check']) && is_array($_POST['check']) && !empty($_POST['check'])) {
        $array = array();
        foreach ($_POST['check'] as $value) {
            $text_field = 'text' . $value;
            if (!isset($_POST[$text_field]) || trim($_POST[$text_field]) == '') {
                echo "Please include your text for each checkbox you selected.";
                exit;
            }
            $array[] = $_POST[$text_field];
        }
    }
}