$file_path = $arr['value'];
header ("Content-type: octet/stream");
header ("Content-disposition: attachment; filename=".$file_path);
header("Content-Length: ".filesize($file_path));
ob_clean();
$handle=fopen($_REQUEST['file'], 'rb');
while (!feof($handle))
{
echo fread($handle, 8192);
flush();
}
fclose($handle);