[PHP] File Download


SUBMITTED BY: eddysix

DATE: March 13, 2017, 8:08 a.m.

FORMAT: PHP

SIZE: 354 Bytes

HITS: 485

  1. <?
  2. $filepath="FILE NAME WITH PATH";
  3. $filename="FILE NAME";
  4. $content_len=@filesize($filepath);
  5. Header("Content-type: application/zip");
  6. Header("Content-type: octet-stream");
  7. Header('Content-Disposition: attachment; filename=$filename');
  8. if($content_len!=FALSE){
  9. Header("Content-length: $content_len");
  10. }
  11. readfile($filepath);
  12. ?>

comments powered by Disqus