Welcome Guest, Not a member yet? Register   Sign In
how to get the value of multiple array ??
#2

[eluser]InsiteFX[/eluser]
Code:
public function getHomme()
{        
    $this->db->select('id,nom,prix');
    $this->db->from('chaussure');
    $this->db->join('gnr_convenir', 'gnr_convenir.identifiant_chaussure = chaussure.id');
    $this->db->where('identifiant_genre', 1);  
              
    $query = $this->db->get();
          
    if($query->num_rows()>0)
    {
        return $query->result();
    }

    return FALSE;
}


Messages In This Thread
how to get the value of multiple array ?? - by El Forum - 02-23-2012, 10:53 AM
how to get the value of multiple array ?? - by El Forum - 02-23-2012, 11:16 AM



Theme © iAndrew 2016 - Forum software by © MyBB