Welcome Guest, Not a member yet? Register   Sign In
Retrieving users profile and displaying it.
#2

[eluser]Pedroshow[/eluser]
Code:
function user_profile($id) {
$this->db->select('*');
$this->db->from('users');
$this->db->join('profile', 'users.id = profile.id','left');
$this->db->where('users.id', $id);
$query = $this->db->get();
        
return $query->result();
}


Messages In This Thread
Retrieving users profile and displaying it. - by El Forum - 08-12-2012, 02:19 AM
Retrieving users profile and displaying it. - by El Forum - 08-12-2012, 07:48 AM
Retrieving users profile and displaying it. - by El Forum - 08-12-2012, 09:29 AM
Retrieving users profile and displaying it. - by El Forum - 08-12-2012, 09:49 AM
Retrieving users profile and displaying it. - by El Forum - 08-12-2012, 10:11 AM



Theme © iAndrew 2016 - Forum software by © MyBB