According to the PHP documentation, it mysql_insert_idtakes the last inserted id from the mysql table.
My question is: if I have a site that inserts more than 2 rows per second into the database, can I use mysql_insert_idand get the correct identifier that I refer to to INSERTrequest a row earlier?
source
share