How do I find the ID of a new row added to a table?
Here's how you do it:
<?php
$q = mysql_query("INSERT INTO mytable VALUES('test')");
$rownumber = mysql_insert_id();
//$rownumber contains the id of the new row
?>
More mysql PHP Questions
How do I insert the date into my table?How do I limit the number of rows returned?
How do I include a conditional in my mysql query?
How do I order the results of my query?
How do I set a default value for ENUM fields in PHP?