2.创建商品分类表
3.插入数据
4.动手category.php。/admin/category.php
5.引入模板文件/admin/templates
6.加载模板文件显示/admin/category.php
7.修正首页中左侧的菜单栏中的商品分类的url。/admin/templates/menu.html
8.验证效果
凡是跟商品分类干系的操作都去要求category.php
1.创建一个Category类,专门用来操作sh_category表/includes/Category.class.php
2.通过Category类来获取所有的商品分类/admin/category.php
3.实现getAllCategories方法/includes/Category.class.php
4.在模板中遍历数据并显示/admin/templates/category_list.html
现在数据已经存在,但是商品分类并没有进行真正分类,须要进行分类操作。商品分类没有严格的确定层级的分类,可以无限扩展子分类以是被称之为无限级分类。
5.无限级分类,调用无限级分类,对已经得到的所有商品分类进行处理/admin/category.php
6.实现noLimitCategory方法/includes/Category.class.php
7.显示的时候,按照level层级进行缩进/admin/templates/category_list.html
str_repeat():重复输出某个字符串
无限级分类事理
添加商品分类
1.获取添加商品分类的模板文件/admin/templates/category_add.html
2.添加动作,能够加载category_add.html。/admin/catetory.php
3.修正连接能够进入到category.php?act=add。/admin/templates/category_list.html
上面实现进入到添加商品分类的界面,但是商品分类的新增须要指定父级分类,而现在没有。
4.在加载模板之前,须要获取所有的商品分类。/admin/category.php?act=add
5.在对应模板里显示所得到的所有无限级分类。/admin/templates/category_add.html
增加回到商品列表的链接