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 Python时间序列如何拟合疏系数模型
  • ¥15 求学软件的前人们指明方向🥺
  • ¥50 如何增强飞上天的树莓派的热点信号强度,以使得笔记本可以在地面实现远程桌面连接
  • ¥15 MCNP里如何定义多个源?
  • ¥20 双层网络上信息-疾病传播
  • ¥50 paddlepaddle pinn
  • ¥20 idea运行测试代码报错问题
  • ¥15 网络监控:网络故障告警通知
  • ¥15 django项目运行报编码错误
  • ¥15 STM32驱动继电器