आपको lastInsertId()
के लिए पूछना होगा इससे पहले कि आप कोई transaction
कोशिश करें
$this->dbh->beginTransaction();
// $sql query ran
echo $this->dbh->lastInsertId();
$this->dbh->commit();
आपको lastInsertId()
के लिए पूछना होगा इससे पहले कि आप कोई transaction
कोशिश करें
$this->dbh->beginTransaction();
// $sql query ran
echo $this->dbh->lastInsertId();
$this->dbh->commit();