mirror of
https://github.com/optim-enterprises-bv/control-pane.git
synced 2025-10-30 09:32:27 +00:00
Update db.php
This commit is contained in:
@@ -173,11 +173,12 @@ class Db {
|
||||
$i++;
|
||||
}
|
||||
$query->execute();
|
||||
$lastId = $this->_pdo->lastInsertId();
|
||||
$this->_pdo->commit();
|
||||
} catch(PDOException $e) {
|
||||
return array('error'=>true,'info'=>$e->getMessage());
|
||||
}
|
||||
return array('error'=>false,'lastID'=>$query->lastInsertId());
|
||||
return array('error'=>false,'lastID'=>$lastId);
|
||||
}
|
||||
|
||||
function update($sql, $values){
|
||||
|
||||
Reference in New Issue
Block a user