duanji1924 2017-04-30 04:38
浏览 51
已采纳

Checkbox数组的未定义索引

I am sending an array of checkbox values from a Form to my controller.
I get no value when I try to access them using $_Post. So I decided to try using var_dump(). The result is that I see no value inside my array. If i check 3 checkboxes I get:

array(3) { [0]=> string(0) "" [1]=> string(0) "" [2]=> string(0) "" }

I don't understand how to correct this error.

-- My form --

<div class="container">
<div>
    <form class="form-horizontal" id="form" action="/MVC/home/languageChosen" method="post">
        <div class="form-group">
            <table>
                <tr>
                    <th>Language</th>
                    <th>Learn</th>
                    <th>Teach</th>
                </tr>
                <?php foreach ($data['languageData'] as $languageData): ?>
                    <tr>
                        <td><?php echo $languageData['language_name'] ?></td>
                        <td><input type="checkbox" name="learn[]" value="<?php $languageData['language_id'] ?>"></td>
                        <td><input type="checkbox" name="teach[]" value="<?php $languageData['language_id'] ?>"></td>
                    </tr>
                <?php endforeach ?>
            </table>
            <button id="continueButton" name="action" type="submit" class="btn btn-default" value="RegisterLanguage">Continue</button>
        </div>
    </form>
</div>

-- Controller --

public function languageChosen()
{
    echo "You posted: " . implode(',', $_POST['learn']); // This results in: You posted: ,,
    var_dump($_POST['learn']);
    die();
}

EDIT

When I echo $languageData['language_id'], it results in the image below.

enter image description here

  • 写回答

1条回答 默认 最新

  • dtjwov4984 2017-04-30 05:34
    关注

    You are not getting values because you didn't echo it out.

    Check here

                    <tr>
                        <td><?php echo $languageData['language_name'] ?></td>
                        <td><input type="checkbox" name="learn[]" value="<?php $languageData['language_id'] ?>"></td>
                        <td><input type="checkbox" name="teach[]" value="<?php $languageData['language_id'] ?>"></td>
                    </tr>
    

    Change the above code as like this by adding echo on $languageData

                    <tr>
                        <td><?php echo $languageData['language_name'] ?></td>
                        <td><input type="checkbox" name="learn[]" value="<?php echo $languageData['language_id'] ?>"></td>
                        <td><input type="checkbox" name="teach[]" value="<?php echo $languageData['language_id'] ?>"></td>
                    </tr>
    

    and i hope this solve your problem.. Cheers !

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

    报告相同问题?

    悬赏问题

    • ¥15 关于#java#的问题,请各位专家解答!(相关搜索:java程序)
    • ¥15 linux tsi721的驱动编译后 insmod 提示 报错
    • ¥20 multisim测数据
    • ¥15 求无向连通网的所有不同构的最小生成树
    • ¥15 模拟器的framebuffer问题
    • ¥15 opencv检测轮廓问题
    • ¥15 单点式登录SSO怎么爬虫获取动态SSO_AUTH_ACCESS_Token
    • ¥30 哈夫曼编码译码器打印树形项目
    • ¥20 求完整顺利登陆QQ邮箱的python代码
    • ¥15 怎么下载MySQL,怎么卸干净原来的MySQL