I have a mysql table setup with the field "id" as the primary key set to auto_increment.
I am trying to add a record to this table, and then find out the value of "id" of the record that was just added.
Is there any way to easily do this?
mysql_insert_id -- Get the ID generated from the previous INSERT operation
http://us3.php.net/mysql_insert_id
Worked great -- thanks!