Dodaj komunikat
Lista komunikatów
-
query("SELECT * FROM notifications ORDER BY created_at DESC");
while ($row = $query->fetch(PDO::FETCH_ASSOC)) {
echo "
" . htmlspecialchars($row['title']) . "
" . htmlspecialchars($row['description']) . "
" . $row['created_at'] . " ";
}
?>