[snip]
Column count doesn't match value count at row 1

What does that mean? I have an id auto_increment and it breaks everytime

  because of that error. This has never happend before...
[/snip]

This is a MySQL problem and should be asked on a MySQL list, but having
said that...

You have specified a wrong number of columns in your INSERT query

INSERT INTO table (1,2,3)
VALUES ('1', '2')

Will return this error.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to