我正在尝试显示存储在我的数据库中的类别:
http://dl.dropbox.com/u/16459516/Screen%20shot%202012-05-05%20at%2015.59.40.png
我的想法是从我的模型中的数据库中获取所有数据,并在我的函数中重建数组:
function get_all_categories() {
$query = $this->db->query('SELECT * FROM categories');
//code to reconstruct my array like:
//foreach($query->result_array() as $row) {
//$categories[$row['niveau_1']] = array[]
//}
return $categories;
}
并输出一些数组,如:
[0] => Array
(
[niveau_1] => main category name
[niveau_2] => Array(
...children here and children of these childs
)
)
有谁知道如何做到这一点?我被困在这里,不知道如何创建数组......我知道如何在我的视图中显示它,但让它们进入数组对我来说似乎很难。
提前致谢!