duanao6704 2015-11-02 22:42
浏览 55
已采纳

如何在php表单处理器中获取多组复选框值?

Looking everywhere, but can't find solution. Everyone talks about one group like so:

<input type="checkbox" value="red" name="colors[]"> red<br />
<input type="checkbox" value="purple" name="colors[]"> purple<br>
<input type="checkbox" value="blue" name="colors[]"> blue<br>
<input type="checkbox" value="black" name="colors[]"> black<br>

but i am needing to do multiple groups in a single form like this:

<input type="checkbox" value="red" name="colors[]"> red<br />
<input type="checkbox" value="purple" name="colors[]"> purple<br>
<input type="checkbox" value="blue" name="colors[]"> blue<br>
<input type="checkbox" value="black" name="colors[]"> black<br>
<input type="checkbox" value="sm" name="sizes[]"> small<br />
<input type="checkbox" value="med" name="sizes[]"> medium<br>
<input type="checkbox" value="lrg" name="sizes[]"> large<br>
<input type="checkbox" value="xlrg" name="sizes[]"> x-large<br>

and on top of that the form is dynamic. the names are variable and unknown, so in php post code, it can't be $_POST['colors'].

i have this snippet which can grab all unknown names and build a message for later inserting into an email script for emailing the values of submitted form:

foreach ($_POST as $field=>$value) {
    if ($field != "submit") $msg .= $field . ": " . $value . "
";
}

but as you probably know, when it gets to a set of checkboxes, it says the value is "array", so not only does it need to split or implode the array into multiple values for checkboxes, it then needs to do that for multiple groups of checkboxes.

so for example this might be what $msg would be on a particular form:

first_name: first
last_name: last
email_address: email@email.com
phone: 1234567890
variable_radio_name: answer
variable_selectbox_name: answer
colors_from_checkbox_group_one: red,blue
sizes_from_checkbox_group_two: med,lrg
variable_textarea_name: blah blah blah

textboxes, textareas, radios, dropdown boxes are all easy because it's one answer a piece, but those checkboxes are a pain.

EDIT

did it like this:

if ($field != "submit") $msg .= $field . ": " . is_array($value) ? implode(',', $value) . "
" ? $value . "
";

and like this:

if ($field != "submit") {
    $msg .= $field . ": " . is_array($value) ? implode(',', $value) . "
" ? $value . "
";
}

syntax error both ways.

  • 写回答

1条回答 默认 最新

  • doucaishi0077 2015-11-02 22:56
    关注

    Your syntax error is in using ? twice instead of : for the send part of the ternary. Also, you need parentheses to make the concatenation work correctly:

    $msg .= $field . " : " . (is_array($value) ? implode(',', $value) . "
    " : $value . "
    ");
    

    This might be more readable:

    if ($field != "submit") {
        if(is_array($value)) {
            $msg[] = "$field : " . implode(',', $value);
        } else {
            $msg[] = "$field : $value";
        }
    }
    $msg = implode("
    ", $msg);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 谁有desed数据集呀
  • ¥20 手写数字识别运行c仿真时,程序报错错误代码sim211-100
  • ¥15 关于#hadoop#的问题
  • ¥15 (标签-Python|关键词-socket)
  • ¥15 keil里为什么main.c定义的函数在it.c调用不了
  • ¥50 切换TabTip键盘的输入法
  • ¥15 可否在不同线程中调用封装数据库操作的类
  • ¥15 微带串馈天线阵列每个阵元宽度计算
  • ¥15 keil的map文件中Image component sizes各项意思
  • ¥20 求个正点原子stm32f407开发版的贪吃蛇游戏