बस where()
पर कॉल करें if स्टेटमेंट में, कॉल करने से पहले get()
।
$this->db->select('name');
if(isset($name))
{
//add where clause here, to select specific name
$this->db->where('name', $name);
}
$query = $this->db->get('user');
$result_array = $query->result_array();
दस्तावेज़ीकरण:
https://www.codeigniter.com/user-guide/database/active_record .html