<?
$download_folder_path = "path/to/your/dir/;
$f = "blackjack.zip";
$file = $download_folder_path.$f;
header("Content-type: application/x-zip-compressed");
header("Content-Disposition: inline; filename=test43.zip");
readfile($file);
?>
Notice:
header("Content-Disposition: inline; filename=test43.zip");
the "filename" can be what ever you want the filename to be. It does not have to = the original filename.
Cheers.
P.S. I tested this script. It works.