Esempio n. 1
0
 function dbUpdate($table, $arr, $where = '', $exclude_fields = array())
 {
     $arr = $this->dbArrangeTableau($arr);
     try {
         parent::dbUpdate($table, $arr, $where, $exclude_fields);
     } catch (Exception $e) {
         echo $e->getMessage();
     }
 }