I'm using the following code to add a entry to my SQL database.
$RQ1_string = "INSERT INTO automotive_RQ01_Information VALUES(NULL,'".$title."','".$description."')";
$RQ1_result = mysql_query($RQ1_string);
In the next line I need to use the value of the auto-incrementing ID(The NULL entry).
How can I get the ID from RQ1_result?