<?php $file = "______105.rar "; $size = filesize($file); header("Content-Type: application/x-rar-compressed"); header("Content-Disposition: attachment; filename=".$file); header("Content-Length: ".$size); readfile($file); ?>