我正在运行一个 MySQL INSERT 查询,我将一些数据插入到数据库中。每次添加新条目时,每一行都会生成一个唯一 ID。我想在插入数据后直接得到这个 ID。
PHP代码:
$addGiveawayToDb = mysql_query("INSERT INTO $table(orientation, title, color)
VALUES ('$orientation', '$title', '$color')")
or die(mysql_error());
//Here I need to get the row id of the above data...
谢谢!