How are you ?
My site have a multi languages (English , French , Arabic , .. etc) , I have in my backend tables to showing the content ( posts ) ..
I want to showing in this table ( title , content , support languages )
look at database structure
http://saudi-hotels.info/tables.jpg

I want to showing data like this table
http://saudi-hotels.info/table_information.jpg

I tried to get a good query , but I can't look at my query:
$this->db->from('localization_posts PL');
$this->db->join('posts PO' , 'PO.id_post = PL.id_post');
$this->db->join('langauges LN', 'LN.id_language = PL.id_langauge');
$result = $this->db->get()->result_array();

localization_posts'sid_languageshould beINT. – t_motooka Feb 23 at 18:11