如何制作产品类别导航

时间:2014-04-07 06:19:56

标签: php html html-table

我试图为产品目录制作导航"类别和子类别如下:

    1. Xerox Paper
    2. 书写纸
      1. 艺术家报纸
  1. 书写工具。
  2. 等等。

    我很难找到一个好的教程,或者至少是一个关于表格结构以及一切应该如何看待的好起点。如果有人可以帮助我,我会很感激。我整个周末都在讨论这个问题。

1 个答案:

答案 0 :(得分:2)

对于此类导航,您必须创建4 tables -

1)cat_listing
2)cat_listingtype
3)cat_listingsubtype
4)cat_typesubtype

1) cat_listing -
   id, 
   title, 
   listing_type_id (FK from `cat_listingtype`)

2) cat_listingtype -
   id, 
   title

3) cat_listingsubtype -
   id,
   title

4) cat_typesubtype - 
   id,
   type_id (FK from `cat_listingtype`)
   subtype_id (FK from `cat_listingsubtype`)