I'm having some problems with updating rows in my database.
I have a form of multiple checkboxes
<input type="checkbox" name="checkbox[]" value="75">
<input type="checkbox" name="checkbox[]" value="76">
<input type="checkbox" name="checkbox[]" value="77">
<input type="checkbox" name="checkbox[]" value="78">
Now, i want to update those rows that is selected with the checkboxes. The columnname is "pm_id", and the tablename is "pm". "to_removed" is the columnname that i wish to update.
$data = array(
'to_removed' => 1
);
$checked = $this->input->post('checkbox');
foreach($checked as $check)
{
$this->db->where('pm_id', $check);
$this->db->update('pm', $data);
}
Now, even if i select every checkbox, it only deletes one. What could be the problem?