is there some easy programming trick anyone know to insert record with a lot of fields.
like i'm working with table that has 75 fields, and most of them are on a form.
it just so awkward to use and hard to read an:
insert into table values (75 values).
since PHP has so many neat routines to make life easier, there must be a way to do this more effeciently. I've named the form fields similar (like if a table field is called for example "cust_name", ive named the form field "add_rec_cust_name" )
but i have to be able to use those fields as well as some defaults.
same thing with updating a record...
Thanks
--Karl