There is no case insensitive version of the like function. What you can do is transform both sides of the comparison to lower case, so that you take that out of the equation.
$this->db->like('LOWER(' .$field. ')', strtolower($value));
OR
$this->db->like('LOWER(field_ name)', strtolower($value));
No comments:
Post a Comment