Hi guys,
I've to insert a long form with 32 fields into a mysql table.
i'd like to do that something like this:
$sql="insert into tblname values (... 32 fields ...)";
Obviosly it works fine if the fiedls were in the same order as the mysql table fields. But, my table has as first field an id (auto-increment).
What i want to avoid is to fill all table names but the first (id) one.
Suggestions?