RahulShaw

Untitled

Mar 26th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 KB | None | 0 0
  1. header('Content-Description: File Transfer');
  2. header('Content-Type: application/octet-stream');
  3. header('Content-Disposition: attachment; filename=' . $file_name);
  4. header('Expires: 0');
  5. header('Cache-Control: must-revalidate');
  6. header('Pragma: public');
  7. header('Content-Length: ' . filesize($file_name));
  8. ob_clean();
  9. flush();
  10. readfile($file);
Add Comment
Please, Sign In to add comment