Tools, FAQ, Tutorials:
Retrieving the Last Auto Increment ID in PHP
How To Get the Last ID Assigned by MySQL in PHP?
✍: FYIcenter.com
If you use an ID column with AUTO_INCREMENT attribute, you can use the mysql_insert_id() function to get the last ID value assigned by the MySQL server, as shown in the sample script below:
<?php
include "mysql_connection.php";
$sql = "INSERT INTO fyi_users (name) VALUES ('John King')";
if (mysql_query($sql, $con)) {
print(mysql_affected_rows() . " rows inserted.\n");
print("Last ID inserted: ".mysql_insert_id()."\n");
} else {
print("SQL statement failed.\n");
}
mysql_close($con);
?>
If you run this script, you will get something like this:
1 rows inserted. Last ID inserted: 3
⇒ Uploading Files to Web Servers in PHP
⇐ Setting ID Column as Auto-Incremented in PHP
2016-10-17, ∼1808🔥, 0💬
Popular Posts:
How To Merge Cells in a Column? If you want to merge multiple cells vertically in a row, you need to...
How to extend json.JSONEncoder class? I want to encode other Python data types to JSON. If you encod...
How to use the JSON to XML Conversion Tool at freeformatter.com? If you want to try the JSON to XML ...
How to use the "send-one-way-request" Policy statement to call an extra web service for an Azure API...
How to create a "Sign-up or Sign-in" user flow policy in my Azure AD B2C directory? If you want to b...