I'm still trying to insert form data into a database table. I have 3 dropdown menus with information that should be inserted into the fields in a table with the same 3 columns and a fourth auto_increment column.
When I try the form, I get a response that says:
Error performing query: Column count doesn't match value count at row 1
Any ideas as to what I'm doing wrong?
er, yea, you're sql statement is bad. I suspect you didn't form it correctly (unfortunatly mysql and allows for bad sql).
insert into table (COLUMN1NAME, COLUMN2NAME) values ('1', '2');
so, do you see your problem?
got it, thanks so much for your help!