Search code examples
phpsqlmysqlphpbbphpbb3

PHPBB3 - Get row from insert statement


When using $db->sql_query in PHPBB3, how would I get the id of a row created with an insert statement?


Solution

  • Use:

    SELECT LAST_INSERT_ID()
    

    Reference: