Welcome Guest, Not a member yet? Register   Sign In
Cannot test if a field is empty or not
#5

[eluser]toopay[/eluser]
forgot one line...replace above model, with this
Code:
function recherche($critere)
{
this->db->select('COTE, TITRE, EDITEURS, RESUME, DESCRIPTEURS, MOTSCLES, DIVERS');
$this->db->from ('catalogue_dvd');
this->db->like ('TITRE',$critere);
$this->db->or_like ('EDITEURS',$critere);
$this->db->or_like ('RESUME',$critere);
$this->db->or_like ('DESCRIPTEURS',$critere);
this->db->or_like ('MOTSCLES',$critere);
$this->db->or_like ('DIVERS',$critere);
//the forgotten line
$query = $this->db->get();
$result = $query->result_array();
//if there are a match result, bring first row. Else, Null
return (count($result) > 0 ? $result[0] : NULL);
}


Messages In This Thread
Cannot test if a field is empty or not - by El Forum - 01-24-2011, 04:59 AM
Cannot test if a field is empty or not - by El Forum - 01-24-2011, 05:49 AM
Cannot test if a field is empty or not - by El Forum - 01-24-2011, 07:55 AM
Cannot test if a field is empty or not - by El Forum - 01-24-2011, 09:03 AM
Cannot test if a field is empty or not - by El Forum - 01-24-2011, 09:06 AM
Cannot test if a field is empty or not - by El Forum - 01-24-2011, 02:47 PM
Cannot test if a field is empty or not - by El Forum - 01-25-2011, 04:09 AM
Cannot test if a field is empty or not - by El Forum - 01-25-2011, 04:14 AM
Cannot test if a field is empty or not - by El Forum - 01-25-2011, 04:17 AM
Cannot test if a field is empty or not - by El Forum - 01-25-2011, 04:21 AM
Cannot test if a field is empty or not - by El Forum - 01-25-2011, 04:37 AM
Cannot test if a field is empty or not - by El Forum - 01-25-2011, 04:52 AM
Cannot test if a field is empty or not - by El Forum - 01-25-2011, 05:00 AM
Cannot test if a field is empty or not - by El Forum - 01-25-2011, 09:27 AM



Theme © iAndrew 2016 - Forum software by © MyBB