<?
$local_file = 'dosyalar/klasorler/zip/bakkal.zip';
$download_file = 'ahmet.zip';
if(file_exists($local_file) && is_file($local_file)) {
header('Cache-control: private');
header('Content-Length: '.filesize($local_file));
header('Content-Disposition: filename='.$download_file);
flush();
$file = fopen($local_file, "r");
while(!feof($file)) {
flush();
sleep(1);
}
fclose($file);}
else {
die('Böyle Bir Dosya Yok');
}
?>