User Dashboard
Welcome back, . Here you can view your applications and manage your profile.
My Applications
prepare(
'SELECT a.id, a.status, a.created_at, e.name AS event_name, e.event_date
FROM applications a
JOIN events e ON a.event_id = e.id
WHERE a.user_id = ?
ORDER BY a.created_at DESC'
);
$stmt->execute([$_SESSION['user']['id']]);
$applications = $stmt->fetchAll();
if (count($applications) > 0):
?>
| Event |
Event Date |
Applied On |
Status |
|
|
|
|