gestione gare pubbliche
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.
 
 
 
 
 

15 righe
550 B

<?
$error = true;
$configPath = substr(__DIR__,0,strpos(__DIR__,"/public_html"))."/config.php";
include_once($configPath);
if (!empty($_SESSION["utente"]) && !emptY($_SESSION["utente"]->oe)) {
if (!empty($_GET["modulo"]) && !empty($_GET["codice_elemento"])) {
$dgue = new DGUE($_GET["modulo"],$_GET["codice_elemento"]);
if (!empty($dgue)) {
$error = false;
$action = "/dgue/edit.php?modulo={$dgue->modulo}&codice_elemento={$dgue->elemento}&printForm=1";
DGUE::printTable($action);
}
}
}
?>