Skip to content

Instantly share code, notes, and snippets.

@steffenr
Created February 28, 2011 08:15
Show Gist options
  • Save steffenr/847069 to your computer and use it in GitHub Desktop.
Save steffenr/847069 to your computer and use it in GitHub Desktop.
<?php
if (isset($_GET["file"])) {
$file_name = $_GET["file"];
if (file_exists($file_name)) {
header(”Content-type: application/x-download”);
header(”Content-Disposition: attachment; filename=$file_name”);
header(”Content-Transfer-Encoding: binary”);
header(’Content-Length: ‘ . filesize($file_name));
ob_clean();
flush();
readfile($file_name);
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment