我想要插入2个数组,其中包含一个id,这是我的视图文件
<div class="form-group">
<label class="col-lg-2 control-label">Fee Types</label>
<div class="col-lg-8">
<div class="checkbox">
<?php foreach($types as $key=>$value){?>
<label>
<input type="checkbox" value="<?php echo $value['id'] ?>" name="type_id[]" />
<span class="text"><?php echo $value['name'] ?></span>
</label>
<input type="text" class="form-control" name="files[]" />
<?php } ?>
</div>
</div>
</div>
答案 0 :(得分:1)
控制器*指南
$type_id = $this->input->post('type_id')
foreach($type_id as $key => $val) {
$data_array(
'type_id' = $val;
);
$this->user->details($data_array);
}