7 lines
121 B
PHP
7 lines
121 B
PHP
<?php
|
|
session_start();
|
|
if (!isset($_SESSION['SESS_MEMBER_LEVEL']))
|
|
{
|
|
header("location: index.php?error=pleaselogin");
|
|
}
|