Answers for "get last inserted id in mysql php"

SQL
0

mysql get the last id php

// Insert query 
$query = "insert into users(username,fname,lname) values('sonarika','Sonarika','Bhadoria')"; 

mysqli_query($con,$query); 

// Get last insert id 
$lastid = mysqli_insert_id($con);
Posted by: Guest on May-16-2020

Code answers related to "get last inserted id in mysql php"

Code answers related to "SQL"

Browse Popular Code Answers by Language