This is a support forum, not some place for you to pimp your services.
madhulika, you can try something like this, where $file is the absolute path to the file you want to download:
$filesize = filesize($file);
$fp = fopen($file, "r");
$buff = fread($fp, $filesize);
header("Content-type: application/x-octet-stream");
header("Content-disposition: attachment;filename=$filename");
header("Content-length: $filesize");
echo $buff;