First you have to do
PHP Code:
SELECT id FROM table_name WHERE 1=1 ORDER BY id DESC LIMIT 0,1
this will give u the max id (latest player added), get that id from that query,
then
PHP Code:
UPDATE 'blabla' SET id='%d' (and here you place new id)
This will update and the player's ID will be the newest entry added
(don't know exact queries that you want to make but you get the idea, use the first one, then id = id+1 and update)
__________________