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 php session_start() and session_destroy() function?

1012


What is the use of anonymous function in php?

946


What would occur if a fatal error was thrown in your php program?

1000


What is string in php?

941


What are the methods useful for method overloading?

987


Which function would you use to merge two arrays in php?

939


How to create connection in php?

970


Is facebook still written in php?

942


What is the meaning of php?

905


What is the difference between for and foreach?

1061


Steps for the payment gateway processing?

968


How do I display php errors?

926


Tell me how comparison of objects is done in php5?

897


What is the difference between query and question?

925


What is strlen function in php?

991