Hi,
I am using the following code to add users to my database
$sql2 = "INSERT INTO users VALUES ( '', '$username','$password1','Employer')";
$result2 = mysql_query($sql2);
[code=php]
the first field in the database is ID, is there a way to get the value for ID from this addition without having to query the database again?
thanks