Haloo friends i need help please. Say it i have 2 fields in muysql database. there are "no" and "name". in "no" field i set auto increment. So when someone add to database it would increase 1, 2, 3...etc.
The problem is when i delete unused row. example :
no name
1 a
2 b
3 c
When i delete record no 2. it will display :
no name
1 a
3 c
How to solve that problem (in PHP) ,so it will display automatically :
no name
1 a
2 b
Thanks for helping me
The problem is when i delete unused row. example :
no name
1 a
2 b
3 c
When i delete record no 2. it will display :
no name
1 a
3 c
How to solve that problem (in PHP) ,so it will display automatically :
no name
1 a
2 b
Thanks for helping me