Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm new to CI and I'm having a problem with MySQL

Table1

id | house_id | 
1  |  1       | 
2  |  4       | 
3  |  3       | 

Table2

house_id | image_name | 
4        |  a.jpg     | 
4        |  b.jpg     | 
3        |  c.jpg     | 

How I can select (distinctively) image_name for each house_id by using CodeIgniter Active Record class?

share|improve this question
Hehe Kemal, you beat me to it. @datta, please do not mark up your questions with HTML. StackOverflow uses Markdown. Use the provided toolbar to markup your questions. Thanks. – Jordan Arseno Sep 28 '12 at 6:53

2 Answers

http://codeigniter.com/user_guide/database/active_record.html this is the API you are looking for $this->db->distinct();

share|improve this answer
it works thnks! – datta Sep 29 '12 at 9:25
@datta: You need to accept the liked answers. – Yogendra Singh Nov 9 '12 at 14:40

In your Model

function get_house_image($id){
$this->db->where('house_id',$id);
$query = $this->db->get('table2');
return $query->result();
}

In your cotroller
function house($id){
$data['house'] = $this->your_model->get_house_image($id);
$this->load->view('your_view',$data);

In your view foreach the result and use it. This gets the house's picture which id you pass in url.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.