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

12 lines
162 B
PHP
Executable File

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