I have found this codeigniter active record query where I can delete items in an array
$this->db->delete('stack', array('id' => $id))
However, I would like to delete items which are not in the array.
Is this possible.?
I have found this codeigniter active record query where I can delete items in an array
$this->db->delete('stack', array('id' => $id))
However, I would like to delete items which are not in the array.
Is this possible.?