So I can delete one row using:
$this->db->delete($tableName,array("id"=>4));
…but I can’t figure out how to delete multiple rows. I tried:
$this->db->delete($tableName,array("id"=>4,"id"=5));
as well as:
$this->db->delete($tableName,array(array("id"=>4),array("id"=5)));
…but they both don’t work. I feel like this should be pretty easy. Any answers?
Have you tried this ?