codeigniter select where

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

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
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