Add files via upload

This commit is contained in:
Giandonato Inverso
2020-09-08 18:09:19 +02:00
committed by GitHub
parent 97df13f3f0
commit 86f32b6327
83 changed files with 12716 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
<?php
//If User is logged in the session['user_logged_in'] will be set to true
//if user is Not Logged in, redirect to login.php page.
if (!isset($_SESSION['user_logged_in'])) {
header('Location:login.php');
}
?>