Hi,
I have a table in my database with a auto-increment field. while I was creating the php script I deleted a couple of rows. Now the index of this rows are missing on the table. when I try to insert a new row it doesn't start from the one displayed but from the last one created. for exemple;
I had:
row 1
row 2
row 3 (deleted)
row 4 (deleted)
I want to creat new rows including row 3 and row 4. but instead I get:
row 1
row 2
row 5
row 6
what can I do to get back the rows 3 and 4?
I have a table in my database with a auto-increment field. while I was creating the php script I deleted a couple of rows. Now the index of this rows are missing on the table. when I try to insert a new row it doesn't start from the one displayed but from the last one created. for exemple;
I had:
row 1
row 2
row 3 (deleted)
row 4 (deleted)
I want to creat new rows including row 3 and row 4. but instead I get:
row 1
row 2
row 5
row 6
what can I do to get back the rows 3 and 4?