Ok. i have a database where we add data to it from a web page but the id_num is described below
Field | Type | Null | Key | Default | Extra
id_num | int(11) | | PRI | NULL | auto_increment
This id_num incremented ok but we had say; 1000 entrys but we deleted say 500 entries.
Now my problem when we submit data by the web site it puts an id_num of 1001 not 501 unless you put this in manually. so we have 500 blank id_num's it there any way around this in php code or in the database setup how we can tell it to fill in the blank feilds.
Thank You for any help.