if (isset($_REQUEST["Pw" . $_REQUEST["SingleUpdateRowId"]]) && strlen($_REQUEST["Pw" . $_REQUEST["SingleUpdateRowId"]]) > 0) {
        $_REQUEST["Pw" . $_REQUEST["SingleUpdateRowId"]] = md5($_REQUEST["Pw" . $_REQUEST["SingleUpdateRowId"]]);
    }
    $dbTblBenutzer->doUpdate();
}
if ($dbTblBenutzer->isDeleteInUpdate()) {
    $deleteMask = $dbTblBenutzer->doDeleteFromUpdatemask() ? null : $dbTblBenutzer->doDeleteFromUpdatemask();
    if ($deleteMask != null) {
        $lS = $tblMain->createRow();
        $lS->setSpawnAll(true);
        $lS->setAttribute(0, $deleteMask);
        $tblMain->addRow($lS);
    }
}
if (isset($_REQUEST["showUpdateMask" . $dbTblBenutzer->TABLENAME]) && strlen($_REQUEST["showUpdateMask" . $dbTblBenutzer->TABLENAME]) > 0) {
    $dbTblBenutzer->setAdditionalUpdateFields(array("Passwort" => new PasswordField("Pw" . $_REQUEST["showUpdateMask" . $dbTblBenutzer->TABLENAME])));
}
$tblArduinoBenutzeres = $dbTblBenutzer->getUpdateMask();
$tblMain->addSpacer(0, 20);
$lS = $tblMain->createRow();
$lS->setSpawnAll(true);
$lS->setAttribute(0, $tblArduinoBenutzeres);
$tblMain->addRow($lS);
$lS = $tblMain->createRow();
$lS->setSpawnAll(true);
$lS->setAttribute(0, $newBenutzerBtn);
$tblMain->addRow($lS);
$tblMain->addSpacer(0, 20);
$tblMain->addSpacer(1, 15);
$tblMain->addSpacer(0, 20);
$f = new Form();