php pdo lastinsertid when insert error code example
Example: php pdo last insert id
$stmt = $db->prepare("...");
$stmt->execute();
$id = $db->lastInsertId();
$stmt = $db->prepare("...");
$stmt->execute();
$id = $db->lastInsertId();