Я хочу показать товар по категории и подкатегории. У меня есть две таблицы: одна категория, другая - продукты.
Таблица категорий:
catid catname parentid url
1 LEDS 0 leds
2 Samsung 1 samsung
3 LG 1 lg
4 Cloths 0 cloths
5 women 4 women
6 women-ts 5 women-ts
Продукты:
pid pname catid
1 samsung 4k 2
2 lg full hd 3
3 t-shirt1 6
4 t-shirt2 6
Я хочу показать такие продукты:
Category page:
If i select LEDS category display all Sub-category Products
1.Samsung 4k
2.lg full hd
if i select Cloths Category display all sub-category products
1.t-shirt 1
2.t-shirt 2
Я могу получить категорию и подкатегорию, но не могу получить запись о продукте.
Мой код в product_model. php
public function fetchCategories($parent = 0, $spacing = '', $user_tree_array = '', $catpage = '') {
if (!is_array($user_tree_array)){
$user_tree_array = array();
}
$this->db->select('*');
$this->db->from('category');
if($catpage == ""){
$this->db->where('parentId', $parent);
}else {
$this->db->where('catid', $catpage);
}
$this->db->order_by("catId", "ASC");
$getData = $this->db->get()->result_array();
//print_r($getData);
//print_r($getData);
if(count($getData) > 0) {
foreach($getData as $value){
$color = "";
if($value['parentId'] == 0){
$color = "active";
}
$user_tree_array[] = array("cId" => $value['catId'], "name" => $spacing . $value['catName'], "color" => $color);
$user_tree_array = $this->fetchCategories($value['catId'], $spacing . '-->', $user_tree_array);
}
}else {
// $user_tree_array[] = array("cId" => $getData['catId'],"name"=>$getData['catName']);
}
return $user_tree_array;
}