Open foxmedo opened 6 years ago
i have find the cause of problem you have to update my_model change
$this->_database->{$where_or.$not.'_in'}($this->table.'.'.$field_or_array, $operator_or_value);
by
$multi = $this->is_multidimensional($operator_or_value);
if($multi){
foreach($operator_or_value as $row_value){
$this->_database->{$where_or.$not.'_in'}($this->table.'.'.$field_or_array, $row_value);
}
}else{
$this->_database->{$where_or.$not.'_in'}($this->table.'.'.$field_or_array, $operator_or_value);
}
hello im getting database error im trying to update where_id in array
This my controller i have try
and i have also try
and this my query