diff --git a/index.php b/index.php
index 14e3531..90cf01d 100644
--- a/index.php
+++ b/index.php
@@ -72,7 +72,7 @@ $lateLoans = getLateLoans($pdo);
@@ -207,6 +207,7 @@ $lateLoans = getLateLoans($pdo);
Verliehene Bücher
+ | ID |
Vorname |
Nachname |
Klasse/Funktion |
@@ -216,6 +217,7 @@ $lateLoans = getLateLoans($pdo);
Rückgabe fällig |
+ | #= htmlspecialchars($loan['loanID']) ?> |
= htmlspecialchars($loan['firstName']) ?> |
= htmlspecialchars($loan['lastName']) ?> |
= htmlspecialchars($loan['borrowerRole']) ?> |
@@ -230,6 +232,7 @@ $lateLoans = getLateLoans($pdo);
Versäumte Rückgaben
+ | ID |
Vorname |
Nachname |
Klasse/Funktion |
@@ -239,6 +242,7 @@ $lateLoans = getLateLoans($pdo);
Rückgabe fällig |
+ | #= htmlspecialchars($lateLoan['loanID']) ?> |
= htmlspecialchars($lateLoan['firstName']) ?> |
= htmlspecialchars($lateLoan['lastName']) ?> |
= htmlspecialchars($lateLoan['borrowerRole']) ?> |
| |