When using $db->sql_query in PHPBB3, how would I get the id of a row created with an insert statement?
$db->sql_query
insert
Use:
SELECT LAST_INSERT_ID()
Reference: