Il progetto Gest366 https://www.gest366.it
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

16 lines
408 B

<?php
require_once('ForceDownload.class.php');
$module_name_path = isset($_GET['path_xml']) ? $_GET['path_xml'] : '';
$dir= "files/".$module_name_path."/";
$file = isset($_GET['path_xml']) ? $_GET['path_xml'] : '';
$file = isset($_GET['file']) ? $_GET['file'] : '';
$download = New ForceDownload($dir, $file);
$download->download() or die ($download->get_error());
?>