Anyone know what can cause mysql_error() to output:
"Column count doesn't match value count at row 1"
?
Originally posted by Sharif Anyone know what can cause mysql_error() to output: "Column count doesn't match value count at row 1" ?
this would:
INSERT INTO table (field1, field2, field3) VALUES ('value1', 'value2')
Oh ok so a missing field would cause that. Thanks.