avenirer / CodeIgniter-MY_Model

Base model (MY_Model) for the Codeigniter framework.
325 stars 205 forks source link

how to use "where_not_in"function? #269

Open Noushid opened 6 years ago

Noushid commented 6 years ago

how to use where_not_in"function ? i have tried this $this->model->where_not_in('name',$names)->get_all(); but i got an error? How to fix this or use this function.

salain commented 6 years ago
$this->model->where('field_name',$value_array,NULL,NULL,TRUE)->get_all();