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.
16 righe
510 B
16 righe
510 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) && ! empty($data["tipo_documento"]) && ! empty($data["codice_fvoe"])) { |
|
$document = FVOEDocument::init($data["tipo_documento"], $data["codice_fvoe"]); |
|
$document->printSection([$data["element"]], $data["realName"], true, 0, $_POST["index"]); |
|
exit; |
|
} |
|
} |
|
|
|
HTTPStatus(500);
|
|
|