How do I get the last inserted ID of a MySQL table in PHP?

后端 未结 16 2299
温柔的废话
温柔的废话 2020-11-21 23:09

I have a table into which new data is frequently inserted. I need to get the very last ID of the table. How can I do this?

Is it similar to SELECT MAX(id) FROM

16条回答
  •  栀梦
    栀梦 (楼主)
    2020-11-21 23:32

    Use mysqli as mysql is depricating

    query($query);
    
    printf ("New Record has id %d.\n", $mysqli->insert_id);
    
    /* close connection */
    $mysqli->close();
    ?>
    

提交回复
热议问题