PHP/MySQL insert row then get ‘id’

$link = mysqli_connect('127.0.0.1', 'my_user', 'my_pass', 'my_db');
mysqli_query($link, "INSERT INTO mytable (1, 2, 3, 'blah')");
$id = mysqli_insert_id($link);

See mysqli_insert_id().

Whatever you do, don’t insert and then do a “SELECT MAX(id) FROM mytable“. Like you say, it’s a race condition and there’s no need. mysqli_insert_id() already has this functionality.


Another way would be to run both queries in one go, and using MySQL‘s LAST_INSERT_ID() method, where both tables get modified at once (and PHP does not need any ID), like:

mysqli_query($link, "INSERT INTO my_user_table ...;
  INSERT INTO my_other_table (`user_id`) VALUES (LAST_INSERT_ID())");

Note that Each connection keeps track of ID separately (so, conflicts are prevented already).

Leave a Comment