Với đoạn code này, e thử down với 4 dạng: rar, pdf, docx, jpg, nhưng chỉ down được pdf ạ, cảm ơn mọi người
<?php
$fp = "chao.rar";
$fo = fopen($fp, "rb");
header("Content-Type: application/octet-stream");
header("Content-Length: ".filesize($fp));
header("Content-Disposition: attachment; filename=".$fp);
$fr = fpassthru($fo);
$fc = fclose($fo);
?>