1

在这里,我只想讨论以下内容:

我的 HTML From 就像下面的代码:

<html>
<head>
<title>My Form</title>
</head>
<body>
<form id="sample" method="post" action="saveData.php">
Courses:
<input type="checkbox" name="check[]" Value="C++" />C++
<input type="checkbox" name="check[]" Value="PHP"/>PHP
<input type="checkbox" name="check[]" Value="MYSQL" />MYSQL
<input type="checkbox" name="check[]" Value=".Net"/>.Net
Gender:
<input type="radio" name="gen[]" Value="male"/>male
<input type="radio" name="gen[]" Value="female"/>Female
</form>
</body>
</html>

我想要如下输出:

  foreach ($_POST as $key => $val) {
        $actVal .= "'".strtolower($key)."|".strtolower($val)."',";
        $sqlin .= " ".strtolower($key)." VARCHAR(255) , ";
                }

但我得到了输出,就像在那个选项中点击了一样:

如下所示:

-----------------------------------------
male
C++

但我需要它,如下所示:

male,female
C++,PHP,MYSQL,.Net
4

3 回答 3

1

当您遍历将成为数组的发布数据时,我相信这就是为什么只返回其中一个元素的原因。

您可能想尝试这样的事情:

foreach ($_POST as $key => $val) {
    if ($key == "check" || $key == "gen") { // If this is an array post field
        foreach ($val as $val2) { // We need to loop through again since they're array post fields
            $actVal .= "'" . strtolower($val2) . "'";
        }   
    } else {
        $actVal .= "'".strtolower($key)."|".strtolower($val)."',";
    }
    //$sqlin .= " ".strtolower($key)." VARCHAR(255) , "; // Worry about this separately, should be the same process
}
于 2013-02-04T12:17:58.723 回答
1

我想不出办法解决那个问题。但有一个替代方案:

<input type="checkbox" name="check" value="php" />PHP
<input type="hidden" name="checklist" value="php" />

<input type="checkbox" name="check" value="MySQL" />MySQL
<input type="hidden" name="checklist" value="MySQL" />

这个想法是将复选框/单选按钮的所有值的列表存储在隐藏的输入中,以便在提交表单时在服务器端获取这些值的列表。

顺便说一句,你为什么还需要它?

于 2013-02-04T12:19:00.453 回答
1

POST will send all values if you mark them as selected using javascript right before submitting. $_POST["check"] is an array. use a foreach and get all values from that array.

于 2013-02-04T12:22:12.193 回答