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.
24 righe
596 B
24 righe
596 B
<? |
|
$error = true; |
|
|
|
$root = dirname(__DIR__, 4); |
|
include_once ("{$root}/config.php"); |
|
if (! empty($_SESSION["utente"]) && ! empty($_POST["codice"])) { |
|
$codice = $_POST["codice"]; |
|
$error = false; |
|
?> |
|
swal({title:js_dict["success-msg"],type:"success"}).then(function(status) { |
|
if(status) { |
|
$('<?= $codice ?>').remove(); |
|
eForms2.setup(); |
|
eForms2.onFormChange(null); |
|
} |
|
}); |
|
<? |
|
} |
|
|
|
if ($error) { |
|
header('HTTP/1.0 403 Forbidden'); |
|
die(); |
|
} |
|
?>
|