gal-s
7/3/2019 - 8:44 AM

Get auto generated id (AUTO_INCREMENT) Iused in the latest mysql query

$newID= $mysqli->insert_id;

// The mysqli_insert_id() function returns the ID generated by a query (usually INSERT) on a table with a column having the AUTO_INCREMENT attribute. 
// If no INSERT or UPDATE statements were sent via this connection, or if the modified table does not have a column with the AUTO_INCREMENT attribute, this function will return zero.