我想在此讨论以下内容:
我的HTML来自fllowing代码:
<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>
我希望OutPut像以下一样:
foreach ($_POST as $key => $val) {
$actVal .= "'".strtolower($key)."|".strtolower($val)."',";
$sqlin .= " ".strtolower($key)." VARCHAR(255) , ";
}
但是我得到了输出,就像点击了那个选项一样:
如下所示:
-----------------------------------------
male
C++
但我需要它如下:
male,female
C++,PHP,MYSQL,.Net
答案 0 :(得分: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
}
答案 1 :(得分: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" />
我们的想法是在隐藏输入中存储复选框/单选按钮的所有值列表,以便在提交表单时获取服务器端值的列表。
顺便说一句,你为什么还需要它?答案 2 :(得分:1)
如果您在提交前使用javascript将其标记为已选中,则POST将发送所有值。 $ _POST [“check”]是一个数组。使用foreach并从该数组中获取所有值。