Kaskus

Tech

makbokAvatar border
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
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
0
826
2
GuestAvatar border
Komentar yang asik ya
Urutan
Terbaru
Terlama
GuestAvatar border
Komentar yang asik ya
Komunitas Pilihan