1136:Column count doesn't match value count at row 1 when i insert data into the mysql through form this is the result that i use mysql_errno and mysql_error to get i dont know what's mean help me
It means exactly what it says. The number of columns that you are inserting data into does not match the number of datas that you are inserting.
Like: INSERT INTO table (col1, col2, col3, col4) VALUES (1, 2, 3)
thank u vincent!