Getting the Last Inserted ID in MySQL Table using PHP

Language
In this tutorial, I'm going to show you how to get the last inserted id in our database table. In this tutorial, I have set up an Insert Form to show the id that will be inserted in our MySQL database. I've included 2 mysqli methods in this tutorial in the comments. So, feel free to switch between the two.

Creating our Database

First, we're going to create a database that contains our data. 1. Open phpMyAdmin. 2. Click databases, create a database and name it as "last_id". 3. After creating a database, click the SQL and paste the below code. See image below for detailed instruction.
  1. CREATE TABLE `user` (
  2.   `userid` INT(11) NOT NULL AUTO_INCREMENT,
  3.   `firstname` VARCHAR(30) NOT NULL,
  4.   `lastname` VARCHAR(30) NOT NULL,
  5.   `address` VARCHAR(100) NOT NULL,
  6. PRIMARY KEY(`userid`)
  7. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
lastid

Creating our Connection

Next step is to create a database connection and save it as "conn.php". This file will serve as our bridge between our form and our database. To create the file, open your HTML code editor and paste the code below after the tag.
  1. <?php
  2.  
  3. //MySQLi Procedural
  4. //$conn = mysqli_connect("localhost","root","","last_id");
  5. //if (!$conn) {
  6. //die("Connection failed: " . mysqli_connect_error());
  7. //}
  8.  
  9. //MySQLi Object-oriented
  10. $conn = new mysqli("localhost","root","","last_id");
  11. if ($conn->connect_error) {
  12.     die("Connection failed: " . $conn->connect_error);
  13. }
  14.  
  15. ?>

Creating our Form and Show id Script

Lastly, we create the add form as well as our show id script. To create the form, open your HTML code editor and paste the code below after the tag.
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Getting the Last Inserted ID in MySQL Table using PHP/MySQli</title>
  5. </head>
  6. <body>
  7.         <h2>Add Form:</h2>
  8.         <form method="POST">
  9.         <label>Firstname:</label><input type="text" name="firstname">
  10.         <label>Lastname:</label><input type="text" name="lastname">
  11.         <label>Address:</label><input type="text" name="address">
  12.         <input type="submit" value="Add" name="submit">
  13.         </form>
  14.         <?php
  15.                 $id="";
  16.                 $row['firstname']="";
  17.                 $row['lastname']="";
  18.                 $row['address']="";
  19.                
  20.                 if (isset($_POST['submit'])){
  21.                        
  22.                         $firstname=$_POST['firstname'];
  23.                         $lastname=$_POST['lastname'];
  24.                         $address=$_POST['address'];
  25.                        
  26.                         include('conn.php');
  27.                        
  28.                         //MySQLi Procedural
  29.                         //mysqli_query($conn,"insert into `user` (firstname, lastname, address) values ('$firstname','$lastname','$address')");
  30.                         //$id = mysqli_insert_id($conn);
  31.                         //$query=mysqli_query($conn,"select * from `user` where userid='$id'");
  32.                         //$row=mysqli_fetch_assoc($query);
  33.                        
  34.                         //MySQLi Object-oriented
  35.                         $conn->query("insert into `user` (firstname, lastname, address) values ('$firstname','$lastname','$address')");
  36.                         $id = $conn->insert_id;
  37.                         $query=$conn->query("select * from `user` where userid='$id'");
  38.                         $row = $query->fetch_assoc();
  39.                 }
  40.         ?>
  41.         <h2>Last inserted Id: <?php echo $id; ?></h2>
  42.         <h2>Data:</h2>
  43.         <label>Firstname: </label> <?php echo $row['firstname']; ?><br>
  44.         <label>Lastname: </label> <?php echo $row['lastname']; ?><br>
  45.         <label>Address: </label> <?php echo $row['address']; ?>
  46. </body>
  47. </html>

Note: Due to the size or complexity of this submission, the author has submitted it as a .zip file to shorten your download time. After downloading it, you will need a program like Winzip to decompress it.

Virus note: All files are scanned once-a-day by SourceCodester.com for viruses, but new viruses come out every day, so no prevention program can catch 100% of them.

FOR YOUR OWN SAFETY, PLEASE:

1. Re-scan downloaded files using your personal virus checker before using it.
2. NEVER, EVER run compiled files (.exe's, .ocx's, .dll's etc.)--only run source code.

Add new comment