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.
12 righe
589 B
12 righe
589 B
<? |
|
$configPath = substr(__DIR__,0,strpos(__DIR__,"/public_html"))."/config.php"; |
|
include_once($configPath); |
|
if (!empty($_GET["token"]) && !empty($_GET["group"]) && isset($_GET["level"]) && !empty($_SESSION["token"])) { |
|
$token = base64_decode($_GET["token"]); |
|
$group = json_decode(base64_decode($_GET["group"]),true); |
|
if ($token == $_SESSION["token"] && is_numeric($_GET["level"]) && !empty($_GET["language"])) { |
|
$formManager = new FormManager(); |
|
$formManager->printGroup($group,$_GET["language"],true,!empty($_GET["bozza"]),$_GET["level"],true); |
|
} |
|
} |
|
?>
|
|
|