使用codeigniter将选中的复选框从数组数据传递到数据库

ajsxfq5m  于 2021-06-25  发布在  Mysql
关注(0)|答案(1)|浏览(261)

我是codeigniter的新手。我正在尝试将考勤数据传递到数据库中。
这是我的视图代码

<?php $no=1; foreach($employee AS $list_emp) { ?>
    <tr>
    <td><?= $no ?></td>
    <td><input type="hidden" name="employee[]" value="<?php echo $list_emp->sn; ?>"><?= $list_emp->name; ?></td>
    <td><?= $list_emp->position; ?></td>
    <?php foreach ($attend_detail AS $list) {?>
    <td><input type="checkbox" name="detail[]" value="<?php echo $list['details']"></td>
    <?php } ?>
    <td><input type="text" name="note[]"></td>                      
    <input type="hidden" name="location[]" value="<?php echo $list_emp->branch; ?>">
    </tr>
<?php $no++;} ?>


当我检查1名员工的出勤情况时(示例4630是work),数据可以传递到数据库,但结果是这样的(参见图2)

所有数据视图输入到数据库,而不是数据时,1选中之前和备注工作插入到第1行。
这是我的控制器

function add_attend()
{
    $employee   = $this->input->post('employee');
    $location   = $this->input->post('location');
    $detail     = $this->input->post('detail');
    $note       = $this->input->post('note');
    $total      = count($employee);
    if (empty($detail) === true) { $errors['detail'] = 'please select one';}

    if (!empty($errors)){
        $info['success'] = false;
        $info['errors']  = $errors;
    }

    else {
        for ($x=0; $x<$total; $x++){
        $data = array(
            'sn'    => $employee[$x],
            'lab'   => $location[$x],
            'stat'  => $detail[$x],
            'note'  => $note[$x]
            );          
        $this->m_human_capital->insert_attend($data);
        }

        $info['success'] = true;
    }
    $this->output->set_content_type('application/json')->set_output(json_encode($info));
}

这是我的模特

function insert_attend($data)
{
    $this->db->insert('tb_attend_tes',$data);
}

我只想插入我查过的员工考勤表。请帮忙
谢谢你的帮助。
对不起,我的英语不好

bis0qfac

bis0qfac1#

在员工考勤输入名称中添加一个标识符,这样每个员工都有自己唯一的考勤数据集。
查看:

...
    <td><input type="checkbox" name="detail[<?php echo $no-1 ?>][]" value="<?php echo $list['details']"></td>
    ...

由于考勤输入是多维数组,因此 empty 验证,你可以用 array_filter 检查整个考勤表。
由于要将数组数据类型插入到单个列中,因此需要将其串联起来,可以使用 implode() 功能。
控制器:

function add_attend()
{
    $employee   = $this->input->post('employee');
    $location   = $this->input->post('location');
    $detail     = $this->input->post('detail');
    $note       = $this->input->post('note');
    $total      = count($employee);
    $filtered_detail = array_filter($detail);
    if (empty($filtered_detail) === true) {
        $errors['detail'] = 'please select one';
    }

    if (!empty($errors)){
        $info['success'] = false;
        $info['errors']  = $errors;
    }

    else {
        for ($x=0; $x<$total; $x++){
            $data = array(
                'sn'    => $employee[$x],
                'lab'   => $location[$x],
                'stat'  => (isset($detail[$x]) && !empty($detail[$x])) ? implode(",",$detail[$x]) : '',
                'note'  => $note[$x]
                );          
            $this->m_human_capital->insert_attend($data);
        }

        $info['success'] = true;
    }
    $this->output->set_content_type('application/json')->set_output(json_encode($info));
}

相关问题