get last id from table mysql code example

Example 1: get id of record created php

" . mysqli_error($conn);
}

mysqli_close($conn);
?>

Example 2: 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);

Example 3: mysql get this inserted id php

$this_id = mysqli_insert_id($db);

Example 4: mysql get last inserted id

-- To get the last inserted auto-increment row ID: --
SELECT LAST_INSERT_ID( optional_expression )

-- If you have just inserted it using a command in C# use: --
int lastId = (Int32)yourCommand.LastInsertedId;

Example 5: find last id

//laravel controller
$newOrder = new Order();
...
...
$newOrder->save();

$last_id = $newOrder->id;

Tags:

Misc Example