irwan

Force file Download

Nov 17th, 2011
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 KB | None | 0 0
  1. function force_download($file)
  2. {
  3.     if ((isset($file))&&(file_exists($file))) {
  4.        header("Content-length: ".filesize($file));
  5.        header('Content-Type: application/octet-stream');
  6.        header('Content-Disposition: attachment; filename="' . $file . '"');
  7.        readfile("$file");
  8.     } else {
  9.        echo "No file selected";
  10.     }
  11. }
  12.  
Add Comment
Please, Sign In to add comment