Hi,
I'm doing a quote creator tool. There is a table that will store all the customer info. Then there is a quote table which will share the customer_id key and store all details of the quote.
I would like to store all details of the products quoted in the quote table. Now with a shopping cart you would have a products table with all the product details in it and cross reference, but with this there is no set amount of products as the products that will be quoted for is almost infinate and most will only be quoted for once and at all different prices.
So when in the future the quote is pulled up I would like to know all the products and their coresponding quantites and prices in the original quote.
Now the only way I can think of doing this would be to create a new table for every quote created and prefix the table name with the unique quote_id but this could be very messy with lots of table - surely there is a better - please help if you can think of a better way.
Thanks and hope I explained myself OK.