To retrieve the last inserted ID of the auto_increment column:
mysql> select last_insert_id();
The PHP equivalent is:
The above must be invoked from the same thread that performed the insertion.
To retrieve the last inserted ID of the auto_increment column:
mysql> select last_insert_id();
The PHP equivalent is:
The above must be invoked from the same thread that performed the insertion.