Zum Inhalt springen
View in the app

A better way to browse. Learn more.

Fachinformatiker.de

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

sauerrahm44

User
  • Registriert

  • Letzter Besuch

  1. sauerrahm44 hat sein Profilbild geändert
  2. Hallo @Unitedkingdom, hier habe ich ein Beispiel zum laden deiner Klasse anhand einer Buchung für dich. Was genau möchtest du denn erstellen? Vielleicht hilft dir das Beispiel. Im Beispiel wird eine Buchung anhand einer laden Funktion aufgerufen: public static function laden(int $id_buchung): buchung|false { if(!is_numeric($id_buchung)) return false; $db = new Db(); $sql = "SELECT * FROM buchung WHERE id_buchung=?"; $resultset = $db->query($sql, [$id_buchung]); if ($resultset->num_rows == 1) { $result = $resultset->fetch_object(); $temp = new buchung(); $temp->datum_buchung = $result->datum_buchung; $temp->mitName_buchung = $result->mitName_buchung; $temp->notiz_buchung= $result->notiz_buchung; $temp->id = $result->id_buchung; return $temp; } return false; } Mit diesem Codebeispiel kannst du Datensätze wieder löschen: public static function loeschen(int $id_buchung):void { $db = new Db(); //$sql = "DELETE FROM buchung WHERE id_buchung=?"; $sql = "DELETE FROM buchung WHERE id_buchung=".$id_buchung.""; $resultset = $db->query($sql); }

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.