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.
18 righe
727 B
18 righe
727 B
<? |
|
$configPath = substr(__DIR__,0,strpos(__DIR__,"/public_html"))."/config.php"; |
|
include_once($configPath); |
|
$error = true; |
|
if (!empty($_SESSION["utente"]) && $_SESSION["utente"]->permission($radice) && !empty($_GET["tokenEsportazione"]) && !empty($_SESSION["export-gare-partecipanti"][$_GET["tokenEsportazione"]])) { |
|
$error = false; |
|
header("Content-type: text/csv"); |
|
header("Content-Disposition: attachment; filename=export.csv"); |
|
header("Pragma: no-cache"); |
|
header("Expires: 0"); |
|
foreach($_SESSION["export-gare-partecipanti"][$_GET["tokenEsportazione"]] AS $fornitore) { |
|
echo "\"" . implode("\";\"",$fornitore) . "\"".PHP_EOL; |
|
} |
|
} |
|
if ($error) { |
|
header('HTTP/1.0 403 Forbidden'); |
|
die(); |
|
} |