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

Does session expire on closing browser?

896


Is php fully object oriented?

912


Name some of the popular frameworks in php.

1000


How to remove duplicate values from php array?

1119


Where is the functions php in wordpress?

1066


How to create connection in php?

995


Write the statements that are used to connect php with mysql

977


Tell me how do you define a constant?

942


Explain the types of string comparision function in PHP

938


Name some of the functions in php.

993


Is empty in php?

962


What is the difference between file_get_contents() and file_put_contents() in php?

1161


What is the use of the function 'imagetypes()'?

1005


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

1045


What is mysqli_real_escape_string?

989