Ben 2 tablolar ve sonucu katılmaya çalışın:
Modelde:
$this->db->select('*');
$this->db->from('news');
$this->db->join('authors', 'authors.id = news.author_id');
View dosyası:
foreach($item as $row):
echo $row->id;
endforeach;
When I run the code above, it will output id
column from authors
table.
My question is how do I echo id
column from news
table?
Her iki news
ve author
masalar adında sütun var id
.