Hi,
you can try with header() :
header("Content-Disposition: attachment; filename=\"$fname\"");
header ("Content-type: application/zip");
header("Pragma: no-cache");
$data = fread(fopen($fname, "rb"), filesize("$fname"));
echo $data;
But this is not always fine handled, depending on the browser...