I\'m home now, so unfortunately I can\'t give you the schema until tomorrow. I can tell you, though, that I don\'t have any other auto_increment fields, keys or primary keys.
The rest are varchar, char, and int fields. I have indices on the remaining fields and some multi-column indices, but this auto_increment thing was occuring prior to creating any indices.
Here\'s the gist of the INSERT:
INSERT INTO table (feature_name,alpha_from,num_from,alpha_to,num_to,page_from,page_to,city,county,zip,feature_type,product_name) VALUES ($feature_name,$alpha_from,...
These variables are populated via a form on the previous page, they click an \'Add Record\' button and the next page does the insert after making sure it\'s not a duplicate (just a great big SELECT WHERE query comparing each variable they passed to each field).
I\'ll post tomorrow with the schema unless I figger it out between now and then! Thanks