这是我到目前为止所拥有的
控制器
$i = 0;
foreach ($this->input->post('skill') as $cat) {
$data[$i++]['skill'] = $cat;
}
$this->db->update_batch('skills', $data);
}
模型
function update_record($data)
{
$this->db->update('skills', $data);
}
看法
<?php foreach ($skills as $skill):?>
<input type="text" name="skill[]" value="<?php echo $skill->skill;?>">
<?php endforeach?>
我收到数据库错误
You must specify an index to match on for batch updates.
请帮我解决这个问题,我尝试了谷歌搜索,但没有任何结果。