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

Do you know what is use of count() function in php?

943


How big is nvarchar max?

937


can you give me an example code of calling java script function in php variable using AJAX.or with out ajax??????

1794


Write a program to display a table of any given number?

876


What is config file in php?

971


Are react hooks stable?

885


How to calculate the length of a string?

1023


What is default session time and path in PHP. How to change it?

970


How can you upload a file using php?

1057


Explain the advantages of using PHP?

958


how can i develop forum code? any one pleale help me on this question

1887


How to download file in php?

914


Write a program in php to find the occurrence of a word in a string?

1035


What are the differences between php3 and php4 and php5? What is the current stable version of php? What advance thing in php7?

996


How come the code works, but doesn’t for two-dimensional array of mine?

977