i have a problem case with auto_incrementing, this is my table i have first it was so smooth to incrementing id*
id*      name
1        name1
2        name2
3        name3
4        name4
5        name5
6        name6
but when I delete a record and insert a new record the id starts from 7.
id*      name
1        name1
2        name2
3        name3
5        name5
6        name6
7        name7
this is what i want to make:
id*      name
1        name1
2        name2
3        name3
4        name7
5        name5
6        name6
I would like a solution where every number is filled in, so if I delete a row the next autoinc number will be the number that I deleted not the next number higher.
 
     
     
     
     
    