Quantcast
Channel: CodeIgniter Forums - All Forums
Viewing all articles
Browse latest Browse all 14346

Joining two tables

$
0
0
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

Viewing all articles
Browse latest Browse all 14346

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>