
When you’ve just added an entry to the database with ‘INSERT’, and you need to get the ID of that row for the next step….
$lastId = mysql_insert_id();
I have had a few issues with this, so in one case I ended up just running a SELECT query with the same data I added the query, but just returned the ID...
Main Category