- Beranda
- Komunitas
- Tech
- Website, Webmaster, Webdeveloper
[Help] Download script with PHP


TS
makbok
[Help] Download script with PHP
begini gan, ane lagi buat sistem pengarsipan, nah disitu ane mau buat button untuk download dokumen, ane gogling seh dapet...
cuma pas ane tes kok malah yang keluar metadata nya ya gan ?
ini script untuk downloadnya gan
![[Help] Download script with PHP](https://s.kaskus.id/images/2012/12/04/4294350_20121204071153.jpg)
cuma pas ane tes kok malah yang keluar metadata nya ya gan ?
ini script untuk downloadnya gan
Code:
function unduh($file)
{
if (file_exists($file)) {
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.basename($file));
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
header('Content-Length: ' . filesize($file));
ob_clean();
flush();
readfile($file);
exit;
}
}
![[Help] Download script with PHP](https://s.kaskus.id/images/2012/12/04/4294350_20121204071153.jpg)
0
826
2


Komentar yang asik ya
Urutan
Terbaru
Terlama


Komentar yang asik ya
Komunitas Pilihan