File "download.php"

Full Path: /home/analogde/www/files02/download.php
File size: 269 bytes
MIME-type: text/x-php
Charset: utf-8

<?

@set_time_limit(600);
header("Content-disposition: filename=".basename($fichier));
header("Content-type: application/octetstream");
header("Pragma: no-cache");
header("Expires: 0");

require("./config.inc.php");
readfile("$RelDirN/$Directory/$fichier");
exit();

?>