vpx_db_get_last_id()Returns the last inserted ID when used autoincrement on previous insert query. Make sure you call it inside the db_set_active() as the insert(!).
integer
vpx_shared/vpx_shared_db.inc, line 229
<?php
function vpx_db_get_last_id() {
return (int)db_result(db_query("SELECT LAST_INSERT_ID()"));
}
?>