added new preorderiframe

This commit is contained in:
Luca Haid
2025-06-24 09:41:48 +02:00
parent 40c5cbfcb3
commit 2f1167d4d0
9 changed files with 1264 additions and 4 deletions

View File

@@ -184,6 +184,23 @@ class FronkDB {
return false;
}
public function fetch_all_assoc($_res = false) {
$array = array();
$res = $this->result;
if($_res)
$res = $_res;
if(!$res)
return false;
while($row = mysqli_fetch_assoc($res)) {
$array[] = $row;
}
return $array;
}
public function insert($_table, $_data, $_forcestr = array(), $options = array()) {
if(empty($_table)) {
$this->lastError = "Error constructing INSERT: tablename ommited";