你好吗 ?
我的网站有多种语言(英语、法语、阿拉伯语、.. 等),我的后端表格中有显示内容(帖子)..
我想在此表中显示(标题、内容、支持语言)
看数据库结构
http://saudi-hotels.info/tables.jpg
我想显示像这张表这样的数据
http://saudi-hotels.info/table_information.jpg
我试图得到一个好的查询,但我无法查看我的查询:
$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();