Hai, I am using Php code to download the uploaded files.
<?php
$file="new.zip";
header("Content-type: application/octet-stream");
header("Content-Type: application/zip");
header("Content-Disposition: attachment; filename=\"$file\"");
header("Content-Transfer-Encoding: binary");
readfile("new.zip");
?>
