Retrieving the last insert id from MySql using PHP

前端 未结 7 1088
时光说笑
时光说笑 2020-12-22 08:38

I have two tables in MySql database, one is sales_order and the other is sales_order_details which contains the details of the order in the s

7条回答
  •  再見小時候
    2020-12-22 09:19

    http://ca.php.net/manual/en/mysqli.insert-id.php

    is the property you are looking for. It is completely reliable.

    mysql_insert_id (and all mysql_ functions) is deprecated.

提交回复
热议问题