I need to insert a long row with 32 fields into a MySQL table.
I\'d like to do something like this:
$sql=\"insert into tblname values (... 32 fields
Just use NULL as your first value, the autoincrement field will still work as expected:
NULL
autoincrement
INSERT INTO tblname VALUES (NULL, ... 32 Fields ... )