2013-07-30 67 views
0

我正在使用PHP將行插入到mysql中。獲取插入行的PID

我想在知道pid(主ID)後立即插入作爲返回值的行。

請教...我該怎麼做。

在此先感謝

+1

你可以發現使用谷歌自己的答案:http://www.php.net/manual/en/mysqli.insert-id .php – Baltasarq

回答

0

您可以如下使用:

$id = mysql_insert_id(); 

欲瞭解更多詳情,請參閱This link

+0

非常感謝您的建議......這非常有幫助 – user2633200