我并排侧用笨想列表类别和子类别。 就像这里: http://prntscr.com/mtj2ov
for example:
Flowers
Flowers -> Rose
Flowers -> Tulips
Flowers -> Lilies
表
id - subid - category_name - category_description - status
1 0 Flowers - 1
2 1 Rose - 1
3 1 Tulips - 1
这种模式的内容
public function getCategoryTree($id=0, $sub_mark=''){
$rows = $this->db->select('*')->where('subid', $id)->order_by('id','asc')->get('ci_category')->result();
$category = '';
if (count($rows) > 0) {
foreach ($rows as $row) {
$category .= '<option value="'.$row->id.'">'.$sub_mark.$row->category_name.'</option>';
$category .= $this->getCategoryTree($row->id, $sub_mark.'--');
}
}else{
return false;
}
return $category;
}
此控件的内容
$data['all_categroy'] = $this->category_model->get_all_category();
与例子,如何我需要在模型和控制文件中的变化