Inizializzazione

This commit is contained in:
cmaffio
2015-10-08 11:00:52 +02:00
parent 61949a0cdc
commit 22de29deda
2768 changed files with 254794 additions and 0 deletions

11
index.php Executable file
View File

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