Database conn, users in progress

This commit is contained in:
Dr3amFury
2025-07-17 01:05:46 +02:00
parent d274fa033b
commit ef76dc973a
9 changed files with 149 additions and 8 deletions

8
inc/php/auth.php Normal file
View File

@@ -0,0 +1,8 @@
<?php
session_start();
if (!isset($_SESSION['user_id'])) {
header("Location: /landing.php");
exit();
}
?>