The error message should be a clue here.. 🙂
You are inserting data into a table like this:
INSERT INTO table (a,b,c,d) VALUES (1,2,3,4);
but in your case, the number of arguments in the first () is not the same as in the second ().
The number of values you supply does not match the number of columns you want to put the values into.