Код: Выделить всё
public function get_categories($parent_id = 0)
{
$query = $this->db->query("
SELECT
*
FROM
" . $this->db->dbprefix . "category c
LEFT JOIN
" . $this->db->dbprefix . "category_description cd
ON (c.category_id = cd.category_id)
WHERE
c.status=1
and c.parent_id = '" . (int)$parent_id . "'
order by
sort_order
");
return $query->result_array();
}
Подробнее здесь: https://stackoverflow.com/questions/297 ... active-rec
Мобильная версия