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

A process can run only in the background. State Whether True or False?

1112


What is the correct and the most two common way to start and finish a php block of code?

941


What is a controller php?

979


What is mysqli_fetch_array?

996


What is the string concatenation operator in php?

1082


what does this symbol mean in php?

1127


How to store the uploaded file to the final location?

986


What are new features in php 7?

993


How to merge values of two arrays into a single array?

1001


What is the best php framework 2018?

1001


Do you know how can we check the value of a given variable is a number?

908


What is a string in r?

921


How can we check the value of a given variable is a number?

1061


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

967


How can I learn php fast?

1052