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



How to download the files using PHP..

Answer / 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

More PHP Interview Questions

What is the difference between mysql_fetch_array() and mysql_fetch_assoc()?

0 Answers  


what is array_search() in php?

2 Answers  


What is difference between include,require,include_once and require_once()?

0 Answers  


What are regular expressions in programming?

0 Answers  


Is php difficult to learn?

0 Answers  


What is the importance of "action" attribute in a html form?

0 Answers  


Which function parses an English textual date or time into Unix timestamp in PHP.

0 Answers  


How to remove duplicate values from a PHP Array?

0 Answers  


Are php sessions cookies?

0 Answers  


Tell me what is the default session time in php?

0 Answers  


What is PHP? Who is the father or inventor of PHP?

0 Answers  


Explain the difference b/w static and dynamic websites?

0 Answers  


Categories