We Recommend
Posted By
section31 on 07/08/08
Tagged
Versions (?)
Who likes this?
3 people have marked this snippet as a favorite
SpinZ
wizard04
the_coder
Download File
Published in: PHP
Serves an external document for download as an HTTP attachment.
// Serves an external document for download as an attachment.
// example usage: download_file('whatever.wmv');
function download_file($filename, $mimetype = 'application/octet-stream')
{
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Content-Disposition: attachment; filename=$base");
header("Content-Type: $mimetype");
}
Report this snippet