User Tools

Site Tools


pdo:get_the_last_insert_id

This is an old revision of the document!


PDO - Get the Last Insert Id

With PDO you just do run the lastInsertId method.

<?php
$result = $db->exec("INSERT INTO table(firstname, lastname) VAULES('John', 'Doe')");
$insertId = $db->lastInsertId();
pdo/get_the_last_insert_id.1476434972.txt.gz · Last modified: 2020/07/15 09:30 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki