Current directory: /home/klas4s23/domains/585455.klas4s23.mid-ica.nl/public_html/Gastenboek/uploads
<?php
class Flash {
public static function set(string $type, string $message): void {
Session::start();
$_SESSION['flash'][] = ['type' => $type, 'msg' => $message];
}
public static function show(): string {
Session::start();
$output = '';
if (!empty($_SESSION['flash'])) {
foreach ($_SESSION['flash'] as $flash) {
$class = $flash['type'] === 'error' ? 'alert error' : 'alert success';
$output .= '<div class="' . $class . '">' . h($flash['msg']) . '</div>';
}
unset($_SESSION['flash']);
}
return $output;
}
}