gestione gare pubbliche
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.
 
 
 
 
 

15 righe
526 B

<?
$configPath = substr(__DIR__,0,strpos(__DIR__,"/public_html"))."/config.php";
include_once($configPath);
if (is_numeric($_GET["codice_ente"]) && !empty($_GET["anno"])) {
$path = anac::getXMLPath($_GET["codice_ente"],$_GET["anno"],(empty($_GET["generale"])) ? false : true);
if (file_exists($path)) {
$name = explode("/",$path);
$name = end($name);
header('Content-type: text/xml');
header('Content-Disposition: attachment; filename="'.$name.'"');
readfile($path);
}
}
?>