Skip to content

Instantly share code, notes, and snippets.

@twinge
Created January 29, 2010 15:37
Show Gist options
  • Save twinge/289814 to your computer and use it in GitHub Desktop.
Save twinge/289814 to your computer and use it in GitHub Desktop.
<?php
$file = "/var/www/vhosts/cltv8.com/httpdocs/integrawebdemo/video/IntegraWeb_Tour.wmv";
if (!file_exists($file)) trigger_error("File '$file' doesn't exist.", E_USER_ERROR);
header("Content-type: application/octet-stream");
header('Content-Disposition: attachment; filename="' . basename($file) . '"');
header("Content-Length: ". filesize($file));
readfile($file);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment