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 upload files using PHP?

Answer Posted / rashmi

On HTML:
<form enctype="multipart/form-data" action="uploader.php"
method="POST">
<input name="uploadedfile" type="file" />
<input type="submit" value="Upload File" />
</form>
On PHP script:
<?php
$data="any_file.Ext";
$ft=filetype($data);
header('content-type: application/$ft');
header('content-length:'filesize($data));
header('content-disposition:filename='.$data);
echo file_get_contents($data);

Is This Answer Correct ?    4 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what is variable scope, which variables are accessible from where and what are "undefined variable" errors?

1146


What does type casting mean in php? Explain with an example?

1024


What are session variables in php?

1106


How many different types of messages available in php?

1062


Is key in array php?

1064


Does php 7 support multiple inheritance?

1082


Tell me can you extend a final defined class?

1124


Where to put php files in apache server?

1018


What is the use of mysqli_real_escape_string() function?

979


How is php different from other languages?

941


What is the use of header() function in PHP? What the Limitation of HEADER()?

1095


How to get best php developer Experience in Php with Sugar CRM / VTiger.

4453


What is split function in php?

1024


Does php have multiple inheritance?

1037


What is the use of strpos in php?

1102