Welcome Guest, Not a member yet? Register   Sign In
Joining two tables
#1
Photo 

I have 2 tables that i want to join & show the name of user's role. here's the situation

My 2 tables are users_mlhuser_roles_mlh

on the role column of users_mlh table i'm storing the ID of user role, user_roles_mlh contains the name  & id of user role. what i want to do is show the name of the user role in my view.

my tables as follows.

[Image: image.jpg]
i have tried this in my model 


PHP Code:
$this->db->select('*');
$this->db->from('user_roles_mlh');
$this->db->join('users_mlh''users_mlh.role = user_roles_mlh.id');
$this->db->where('users_mlh.role = user_roles_mlh.id');
 
$query $this->db->get();

return 
$query->result_array(); 
   
 but from above i get something like this

[Image: Untitled_122.jpg]

at the moment it lists all user level not the role of each individual user
Reply


Messages In This Thread
Joining two tables - by greenarrow - 10-24-2016, 11:39 AM
RE: Joining two tables - by Wouter60 - 10-24-2016, 10:46 PM
RE: Joining two tables - by php_rocs - 10-25-2016, 06:45 AM



Theme © iAndrew 2016 - Forum software by © MyBB