<![CDATA[Teknotit Snipet Manager tarfst: Snippets: fichier]]>http://snipet.teknotit.com/index.php <![CDATA[Force download - Forcer le download d'un fichier]]> /******************** *@file - path to file */ function force_download($file) { if ((isset($file))&&(file_exists($file))) { header("Content-length: ".filesize($file)); header('Content-Type: application/octet-stream'); header('Content-Disposition: attachment; filename="' . $file . '"'); readfile("$file"); } else { echo "No file selected"; } } ]]> Fri, 17 Oct 2014 06:26:43 +0200