Skip to content

Instantly share code, notes, and snippets.

@Sanix-Darker
Created September 9, 2017 10:47
Show Gist options
  • Save Sanix-Darker/828fd35902198f0a94355082b6c4d199 to your computer and use it in GitHub Desktop.
Save Sanix-Darker/828fd35902198f0a94355082b6c4d199 to your computer and use it in GitHub Desktop.
Get the last insert Id (PHP and MySQL)
$stmt = $BD->query("SELECT LAST_INSERT_ID()");
$lastId = $stmt->fetch(PDO::FETCH_NUM);
$lastId = $lastId[0];
@SANGED
Copy link

SANGED commented Mar 22, 2018

Yeahhh

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment