Getting the Last Inserted ID in MySQL Table using PHP
Submitted by nurhodelta_17 on Thursday, August 24, 2017 - 23:22.
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.- CREATE TABLE `user` (
- `userid` INT(11) NOT NULL AUTO_INCREMENT,
- `firstname` VARCHAR(30) NOT NULL,
- `lastname` VARCHAR(30) NOT NULL,
- `address` VARCHAR(100) NOT NULL,
- PRIMARY KEY(`userid`)
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1;

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.- <?php
- //MySQLi Procedural
- //$conn = mysqli_connect("localhost","root","","last_id");
- //if (!$conn) {
- //die("Connection failed: " . mysqli_connect_error());
- //}
- //MySQLi Object-oriented
- $conn = new mysqli("localhost","root","","last_id");
- if ($conn->connect_error) {
- }
- ?>
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.- <!DOCTYPE html>
- <html>
- <head>
- <title>Getting the Last Inserted ID in MySQL Table using PHP/MySQli</title>
- </head>
- <body>
- <h2>Add Form:</h2>
- <form method="POST">
- <label>Firstname:</label><input type="text" name="firstname">
- <label>Lastname:</label><input type="text" name="lastname">
- <label>Address:</label><input type="text" name="address">
- <input type="submit" value="Add" name="submit">
- </form>
- <?php
- $id="";
- $row['firstname']="";
- $row['lastname']="";
- $row['address']="";
- $firstname=$_POST['firstname'];
- $lastname=$_POST['lastname'];
- $address=$_POST['address'];
- include('conn.php');
- //MySQLi Procedural
- //mysqli_query($conn,"insert into `user` (firstname, lastname, address) values ('$firstname','$lastname','$address')");
- //$id = mysqli_insert_id($conn);
- //$query=mysqli_query($conn,"select * from `user` where userid='$id'");
- //$row=mysqli_fetch_assoc($query);
- //MySQLi Object-oriented
- $conn->query("insert into `user` (firstname, lastname, address) values ('$firstname','$lastname','$address')");
- $id = $conn->insert_id;
- $query=$conn->query("select * from `user` where userid='$id'");
- $row = $query->fetch_assoc();
- }
- ?>
- <h2>Last inserted Id: <?php echo $id; ?></h2>
- <h2>Data:</h2>
- <label>Firstname: </label> <?php echo $row['firstname']; ?><br>
- <label>Lastname: </label> <?php echo $row['lastname']; ?><br>
- <label>Address: </label> <?php echo $row['address']; ?>
- </body>
- </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
- 269 views