Sie müssen nach der lastInsertId()
fragen bevor Sie eine transaction
ausführen
Versuchen Sie es
$this->dbh->beginTransaction();
// $sql query ran
echo $this->dbh->lastInsertId();
$this->dbh->commit();
Sie müssen nach der lastInsertId()
fragen bevor Sie eine transaction
ausführen
Versuchen Sie es
$this->dbh->beginTransaction();
// $sql query ran
echo $this->dbh->lastInsertId();
$this->dbh->commit();