01/10/2018, 15:43
Download file trong php
Mn cho e hỏi.E có đọạn code này nhưng sao file pdf thì không download được ạ.E cảm ơn.
<?php
$fname= $_GET['filename'];
$file=fopen('download/'.$fname, "rb");
header("Content-Type:application/octet-stream");
header("content-Disposition: attachment; filename=" .$fname);
fpassthru($file);
?>
Bài liên quan