+ 2
Value for auto number primary key
It's there an easy way to get the number of the auto generated id when I insert a new entry?
1 Respuesta
+ 4
I found the answer out!
If you are using MySQL you get the auto increment ID of the last insert with:
SELECT LAST_INSERT_ID();