Files
pannello/index.php
2015-10-08 11:41:53 +02:00

12 lines
163 B
PHP
Executable File

<?php
include_once ("core/config.php");
$UTENTE=login();
if ($UTENTE['admin']) {
header("Location: main.php");
} else {
header("Location: mainuser.php");
}
?>