I need help with LAST_INSERT_ID().
I have a mysql table with about 50 columns.
Data is added to the columns in 5 steps.
After the first INSERT statement, the remaining columns are filled using UPDATE.
After the first INSERT, I need LAST_INSERT_ID() to use in WHERE clause for subsequent data inputs.
My problem is that, after each of the 5 steps, the php script is exited, and called again to UPDATE table.
Will LAST_INSERT_ID() be available, even after a script is exited, and then called again?
Sorry for the long explanation.
Richie.