evoadmin-mail/htdocs/index.php

14 lines
211 B
PHP
Raw Normal View History

<?php
2017-12-13 17:40:48 +01:00
session_name('EVOADMIN_SESS');
session_start();
2017-12-13 17:40:48 +01:00
if (isset($_SESSION['login'])) {
header("Location: superadmin.php\n\n");
exit(0);
} else {
header("Location: auth.php\n\n");
exit(0);
}
?>