structure/first-structure #1

Merged
taarly merged 19 commits from structure/first-structure into main 2025-11-17 14:00:02 +00:00
Showing only changes of commit 92ded0c378 - Show all commits

View File

@ -0,0 +1,11 @@
<?php
session_start();
if (empty($_SESSION['logged_in']) || $_SESSION['logged_in'] !== true) {
header("Location: login.php");
exit();
}
$username = $_SESSION['username'];
?>