I am building an online store. The store has several categories (~10), the categories have several products (~10 each), the products have many sub-products(20+ each).
This is the part I am getting stuck on:
The sub-products have several columns of details. The products also have 10 headers.
This is what a product looks like:
http://www.ampedwebdesign.com/bear/new2/public/products/images/straightpins.jpg
the headers are the cells with dark background, and the sub-products are the rows.
This is part of my header class:
class Header extends DatabaseObject {
protected static $table_name="headers";
protected static $db_fields=array('id', 'product_id', 'col1', 'col2', 'col3', 'col4', 'col5', 'col6', 'col7', 'col8', 'col9', 'col0', 'col1', 'col2');
public $id;
public $product_id;
public $col1;
public $col2;
public $col3;
public $col4;
public $col5;
public $col6;
public $col7;
public $col8;
public $col9;
public $col10;
public $col11;
public $col12;
The product view calls the product class to show the image. The product view then calls the header class to return headers by product_id. The product view then calls the sub-products class to return the sub-products by product_id. The product view then calls the sub-products class to return the sub-product details in a foreach loop.
Any help would be appreciated, I hate writing code like this when I know there is a better way. I just don't know how to find it.
My DB tables: products, sub-products, categories, headers