In CodeIgniter using active record, how do I perform a not equal to in $this->db->where(). For instance:
$this->db->where()
$this->db->where(\'emailsT
Try this code. This seems working in my case.
$this->db->where(array('id !='=> $id))