codeigniter select where

Solutions on MaxInterview for codeigniter select where by the best coders in the world

showing results for - "codeigniter select where"
Beyonce
17 Jul 2016
1$array = array('name' => $name, 'title' => $title, 'status' => $status);
2$this->db->where($array);
3// Produces: WHERE name = 'Joe' AND title = 'boss' AND status = 'active'
4