insert into shopping(fieldnames) values(values);
The field names are:
inventory ( product tinytext NOT NULL, quantity tinytext NOT NULL, id tinyint(4) DEFAULT '0' NOT NULL auto_increment, description tinytext NOT NULL, price float(10,2) DEFAULT '0.00' NOT NULL, KEY id (id), PRIMARY KEY (id), KEY price (price) );
The ID field though, it auto-incrementing, so it does not need to be set, so leave that field out.
Remember the fields should be seperated with a comma.
The values are whatever values you want to assign to the fieldname, you should put them in the same order as you put the fieldnames.