Current directory: /home/klas4s23/domains/585455.klas4s23.mid-ica.nl/public_html/Gastenboek/uploads
<?php
// Display messages
include 'connect.php';
$sql = "SELECT * FROM gb_messages ORDER BY id DESC";
$result = $conn->query($sql);
if ($result->num_rows > 0) {
while ($row = $result->fetch_assoc()) {
echo "<p><strong>" . $row["naam"] . "<br> " . $row["date"] . " . <br>" . $row["korte_text"] . "</p>";
}
} else {
echo "No messages found.";
}
// Close the database connection
$conn->close();
?>