Toggle navigation
Home
Latest pastes
FAQ
Random
BitBin is shutting down!
Register
Login
[PHP] File Download
SUBMITTED BY:
eddysix
DATE:
March 13, 2017, 8:08 a.m.
FORMAT:
PHP
SIZE:
354 Bytes
Raw
Download
Tweet
HITS:
485
Go to comments
Report
<?
$filepath
=
"FILE NAME WITH PATH"
;
$filename
=
"FILE NAME"
;
$content_len
=@
filesize
(
$filepath
);
Header
(
"Content-type: application/zip"
);
Header
(
"Content-type: octet-stream"
);
Header
(
'Content-Disposition: attachment; filename=$filename'
);
if
(
$content_len
!=
FALSE
){
Header
(
"Content-length:
$content_len
"
);
}
readfile
(
$filepath
);
?>
Please enable JavaScript to view the
comments powered by Disqus.
comments powered by
Disqus