Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

How to download the files using PHP

Answer Posted / vishwapati_mishra

<?
$dir="/path/to/file/";
if (isset($_REQUEST["file"])) {
$file=$dir.$_REQUEST["file"];
header("Content-type: application/force-download");
header("Content-Transfer-Encoding: Binary");
header("Content-length: ".filesize($file));
header("Content-disposition: attachment;
filename=\"".basename($file)."\"");
readfile("$file");
} else {
echo "No file selected";
}
?>

Is This Answer Correct ?    7 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the use of callback in php?

1055


What is Type hinting in PHP?

1201


What is the difference between single quoted string and double quoted string?

1181


Tell me what kind of things have you done on the social side?

1035


In php how can you jump in to and out of "php mode"?

1037


What is alias in php?

1094


Which is better php or nodejs?

1015


What is use of echo in php?

986


Describe which programming language does php parallel to?

1039


How do you create an array in php?

1071


What is the difference between get & post ?

1176


Does cors prevent csrf?

1010


Do loops php?

1036


How can we access the data sent through the url with the get method?

1247


Is null empty php?

1078