Thanx for the input. You pointed out a big flaw in my plan.
I was planning to have, for each item, an ItemID, a brief description(including price), a thumbnail, then have the full description, full image, a price field that I could query to check on how much merchandise I have to sell etc.
I was going to have one table with just 3 columns per row, ItemId, the thumbnail and brief description. if a user was interested, he would click and be shown a different page with the full image and full description, shipping terms etc.
For some reason , I thought I would hard code the first table, and only build the page with the full info with php.
That would be a mistake, because I would have to change the small table every time I made a sale.
My db would look like this:
create table Inventory( ItemId, int primary key, auto_increment,
thumbnail varchar(?),
briefdescrpt varchar(255) or maybe blob
largeimage, varchar(?),
fulldescript blob,
price currency,
ShipTerms varchar(25),
etc,
);
my first table would be populated by
select ItemID, thumbnail, briefdescript from Inventory
and my second table (full page) would be populated by:
select ItemId, largeimage, fulldescript, price, ShipTerms, etc.
Oh well, back to the drawing board.
arelgee