How to make a nested HTML list with CodeIgniter
13:56 18 Jul 2015

I have Main product category Listed Like

  1. Cake
  2. List item
  3. Bun
  4. Toffees
  5. Bread

Under one Main product category there are sub products too.

1 Cake (1.1 Butter Cake)(1.2 Chocolate cake)

On my view I echo these main Products only by using following code.

main_products_cat_name; ?>

<?php echo $row->main_products_cat_name; ?>

Can some one help me to echo Sub product category under Main Product.

php codeigniter model-view-controller html-lists