[go: up one dir, main page]

Menu

[r120]: / index.php  Maximize  Restore  History

Download this file

11 lines (11 with data), 155 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
<?php
session_start();
if(isset($_SESSION['user_id']))
{
header('Location: html_gui');
}
else
{
header('Location: html_gui/login.html');
}
?>