ok so i have this problem that i need to achieve...Here is my site
What i need to do is for each product sold i need to have 2 other products that are either an upgrade or a downgrade.
so there each product has 3 classes standard, business, and premium and based on what the current product is they either increase or decrease in price..
so basically they are customizing each solution. So what i need is figure out the best way to structure my db for this...here is the query i use to pull what i have now
$query = "SELECT p.ProductName, p.price, pc.quantity, p.ProductImage, p.Features
FROM productinfo as p
join preconfig_categories as pc on p.ProductID = pc.product_id
join preconfig as c on c.id = pc.category_id
join subcategory as sc on p.SubCategoryID = sc.SubCategoryID
WHERE c.code = '{$type}_{$count}_{$class}'
order by sc.ordering";
I was thinking of in the productinfo table which is currently structured like this
CREATE TABLE `productinfo` (
`ProductID` int(11) NOT NULL AUTO_INCREMENT,
`ProductName` varchar(255) NOT NULL,
`ProductImage` varchar(255) NOT NULL,
`CategoryID` int(11) NOT NULL,
`SubCategoryID` int(11) NOT NULL,
`ProductBrief` varchar(255) NOT NULL,
`Features` text NOT NULL,
`Specifications` text NOT NULL,
`Reviews` text NOT NULL,
`Price` varchar(255) NOT NULL,
`Status` tinyint(4) NOT NULL,
`PartName` varchar(255) NOT NULL,
`skip_step` tinyint(1) DEFAULT NULL,
PRIMARY KEY (`ProductID`)
) ENGINE=MyISAM AUTO_INCREMENT=164 DEFAULT CHARSET=latin1;
I was thinking off adding three extra fields
class
product1
product2
so basically i can use the class to tell what the current product is and then the other two fields product1 and product2 which will have the ProductID of the other two products....This seems like it could work but i feel like theres probably a better solution out there then can work a bit better....any ideas input would be strongly appreciated