Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- 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";
- }
- }
Add Comment
Please, Sign In to add comment