drxp993551 2016-07-08 09:35
浏览 26
已采纳

使用php在数据库中插入复选框的ID

I have two input fields:

<input type='hidden' name='amenId[]' value='$amen[amenId]'>  
<input type="checkbox" name='amentities[]' id='check'>$amen[amenBG]  

These two input fields are in foreach tag which loops through an array($amen). After the form is submitted I have php file that loops through the array and insert the id of the checked input and the value. Now the problem comes from the fact that my input fields are checkboxes. I have used this technic for different array where the input type was text and I didn't have problems. Here I have around 30 choices to choose from and when I check the first one and the fifth one in the database where the ids of the choicse should be 1 and 5 but instead of that are 1 and 2. I'm not sure why is that but I'm thinking that it has to do with getting the values only from the checked boxes.
My php code:

$checkedAmen = '';  
        foreach ($_POST['amentities'] as $key => $amen) {

            $checkedAmen = $amen;
            $checkedId = $_POST['amenId'][$key];

            if ($checkedAmen == "on") {
                $checkedAmen = "Yes";
            }elseif($checkedAmen == "") $checkedAmen ="No";

            $sqlAmen = "INSERT INTO ObjectAmen(ProductId, AmenId, AmenData) VALUES(?, ?, ?)";
            if ($stmtAmen = $db -> prepare($sqlAmen)) {
                $stmtAmen -> bind_param('iis', $last, $checkedId, $checkedAmen);
            }else{
                echo "Error: " . $db->error;
            }
            $stmtAmen -> execute();
        }

Can someone help me? I would like to have the correct ids correspoding to the checked choices in the database.

  • 写回答

1条回答 默认 最新

  • dongqiao8502 2016-07-08 10:00
    关注

    There's nothing currently tying both of your inputs together. You can have a value on a checkbox though, so if it's checked you have the id

    <input type="checkbox" name='amentities[]' value='$amen[amenBG]'>
    

    Also you want to take id's off the input if it's in a foreach, because you'll be rebinding the id every time.

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

报告相同问题?

悬赏问题

  • ¥28 微信小程序开发页面布局没问题,真机调试的时候页面布局就乱了
  • ¥15 python的qt5界面
  • ¥15 无线电能传输系统MATLAB仿真问题
  • ¥50 如何用脚本实现输入法的热键设置
  • ¥20 我想使用一些网络协议或者部分协议也行,主要想实现类似于traceroute的一定步长内的路由拓扑功能
  • ¥30 深度学习,前后端连接
  • ¥15 孟德尔随机化结果不一致
  • ¥15 apm2.8飞控罗盘bad health,加速度计校准失败
  • ¥15 求解O-S方程的特征值问题给出边界层布拉休斯平行流的中性曲线
  • ¥15 谁有desed数据集呀