How to get last inserted ID from wordpress database ?
Straight after the $wpdb->insert() that does the insert, do this:
$lastid = $wpdb->insert_id;
More information about how to do things the wordpress way can be found in the wordpress codex. The details above were found here on the wpdb class page
wow! thats how easy it is? Thanks a lot
ReplyDelete