0) { // UPDATE if ($svgPath) { $sql->set( "UPDATE floors SET name = ?, building_id = ?, level = ?, comment = ?, svg_path = ? WHERE id = ?", "siissi", [$name, $buildingId, $level, $comment, $svgPath, $floorId] ); } else { $sql->set( "UPDATE floors SET name = ?, building_id = ?, level = ?, comment = ? WHERE id = ?", "siiss", [$name, $buildingId, $level, $comment, $floorId] ); } } else { // INSERT $sql->set( "INSERT INTO floors (name, building_id, level, comment, svg_path) VALUES (?, ?, ?, ?, ?)", "siiss", [$name, $buildingId, $level, $comment, $svgPath] ); } $_SESSION['success'] = "Stockwerk gespeichert"; // ========================= // Redirect // ========================= header('Location: ?module=floors&action=list'); exit;