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.
20 righe
502 B
20 righe
502 B
<? |
|
|
|
$configPath = substr(__DIR__, 0, strpos(__DIR__, "/public_html")) . "/config.php"; |
|
include_once($configPath); |
|
|
|
if (!empty($_POST["data"])) { |
|
|
|
$data = json_decode(gzinflate(base64_decode($_POST["data"])), 1); |
|
if (is_array($data)) { |
|
$npa = NuovaPiattaformaAppalti::init(null, intval($data["codice"])); |
|
// Verifica utente |
|
if(!$npa->verifyUtente()) { |
|
die_forbidden(); |
|
} |
|
$npa->printSection([$data["element"]], $data["realName"], true, 0, $_POST["index"]); |
|
exit; |
|
} |
|
} |
|
|
|
HTTPStatus(500);
|
|
|