Welcome Guest, Not a member yet? Register   Sign In
Active record problem
#2

[eluser]mah0001[/eluser]
try this:

Code:
//replace these lines
$this->db->like('email',$_keyword);        
$this->db->where('video !=','NULL');
$this->db->or_where('image !=','NULL');  

//with
$this->db->where("(video!='NULL' or image!='NULL')");//this adds the or with the parenthesis
$this->db->where('email',$_keyword);


Messages In This Thread
Active record problem - by El Forum - 11-16-2009, 07:33 PM
Active record problem - by El Forum - 11-16-2009, 07:49 PM
Active record problem - by El Forum - 11-16-2009, 08:43 PM



Theme © iAndrew 2016 - Forum software by © MyBB