7 lines
123 B
PHP
7 lines
123 B
PHP
<?php
|
|
session_start();
|
|
if(!isset($_SESSION['username'])) {
|
|
header('Location: ../index.php');
|
|
exit();
|
|
}
|
|
?>
|