Ciao, avevo usato questo per far scaricare un mp3
	codice:
	// place this code inside a php file and call it f.e. "download.php"
$path = "dload/";
$name='file.mp3';
$fullPath = $path.$name;
 
if ($fd = fopen ($fullPath, "r")) {
    $fsize = filesize($fullPath);
    $path_parts = pathinfo($fullPath);
    $ext = strtolower($path_parts["extension"]);
    switch ($ext) {
        case "mp3":
        header("Content-type: application/mp3"); // add here more headers for diff. extensions
        header("Content-Disposition: attachment; filename=\"".$path_parts["basename"]."\""); // use 'attachment' to force a download
        break;
        default;
        header("Content-type: application/octet-stream");
        header("Content-Disposition: filename=\"".$path_parts["basename"]."\"");
    }
    header("Content-length: $fsize");
    header("Cache-control: private"); //use this to open files directly
    while(!feof($fd)) {
        $buffer = fread($fd, 2048);
        echo $buffer;
    }
}
fclose ($fd);
 
Se puo' esserti d'aiuto modificando il content type e magari passando il nome del file in get o post dovresti riuscire a farlo