morning, I would like to multiple update data to data base using explode expression
here my controller :
$id = explode(' ',$this->post('id'));
$respond = $this->model->update($id,$data);
my model :
public function update($id=null,$data=null)
{
$this->db->where('id', $id);
$this->db->update($this->table, $data);
return true;
}