Skip to content

Instantly share code, notes, and snippets.

@septor
Created January 7, 2014 14:24
Show Gist options
  • Save septor/8300031 to your computer and use it in GitHub Desktop.
Save septor/8300031 to your computer and use it in GitHub Desktop.
Force download MP3
<?php
$file = ""; // file to download, you could use $_GET['file'] and include it in the URL somehow
header ("Content-type: octet/stream");
header ("Content-disposition: attachment; filename=".$file.";");
header ("Content-Length: ".filesize($file));
readfile($file);
exit;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment