Hi, I have a mysql table that has a column that's autoincremented. Over time, I've deleted various records from the table so the auto increment field looks something like this:
3
4
5
7
8
10
etc.
If my php script has the value of one of the ids, for example 5, to find out what the next increment in the database is?
I can't just go 5++ as that'll return me 6, which is not the id of the next increment?
T.I.A. 🙂