Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
13 righe
425 B
13 righe
425 B
<? |
|
$configPath = substr(__DIR__,0,strpos(__DIR__,"/public_html"))."/config.php"; |
|
include_once($configPath); |
|
if (isset($_SESSION["utente"]) && !empty($_SESSION["utente"]->oe)) { |
|
include($root."/layout/top.php"); |
|
$oe = oeManager::getOE($_SESSION["utente"]->oe["codice"]); |
|
include(__DIR__."/form.php"); |
|
include($root."/layout/bottom.php"); |
|
} else { |
|
header('HTTP/1.0 403 Forbidden'); |
|
die(); |
|
} |
|
?>
|