$File = 'mZefile.zip';
header("Content-Disposition: attachment; filename=".$File);
if (function_exists("mime_content_type")) {
$type = @mime_content_type($File);
header("Content-Type: " . $type);
} else
header("Content-Type: application/octet-stream");
$fp = @fopen($File, "r");
if($fp) {
while(!@feof($fp))
echo @fread($fp, 1024);
fclose($fp);
}