Genc_Legend adlı üyeden alıntı: mesajı görüntüle
çalışmadı :S kendim ekleim bi link yine olmadı :S aynı bu şekide de denedim kodu
Sayfada hata çıkmıyor mu?

Şöyle dene bir de:

<?php 
$filename = "http://img479.imageshack.us/img479/2173/1108071742nl9.jpg"; 

if(ini_get('zlib.output_compression')) { 
  ini_set('zlib.output_compression', 'Off'); 
} 

header("Pragma: public"); 
header("Expires: 0"); 
header("Cache-Control: must-revalidate, post-check=0, pre-check=0"); 
header("Cache-Control: private",false); 
header('Content-Type: application/octet-stream'); 
header("Content-Disposition: attachment; filename=\"".basename($filename)."\"" ); 
header("Content-Transfer-Encoding: binary"); 

readfile("$filename"); 
exit(); 
?>