- Feb 7, 2001
- 1,637
- 0
- 0
Ok, So I have a MySQL table, interfacing with it with PHP.
Now, the first column of the MySQL table is set to AUTO INCREMENT.
So, say I have 3 records inserted in the table, ids: 1, 2, and 3
Now, I delete record number 3, and then I insert more records. Well, those new records get inserted as records 4, 5, 6 etc... BUT even though I deleted records number 3, it'll skip numbering anythign record 3 for some reason...
And I don't want it to do that. How can I stop it from doing that???
thanx in advance.
Now, the first column of the MySQL table is set to AUTO INCREMENT.
So, say I have 3 records inserted in the table, ids: 1, 2, and 3
Now, I delete record number 3, and then I insert more records. Well, those new records get inserted as records 4, 5, 6 etc... BUT even though I deleted records number 3, it'll skip numbering anythign record 3 for some reason...
And I don't want it to do that. How can I stop it from doing that???
thanx in advance.