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 / sei thu htun

Here is example code:
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:

$target_path="YOUR_TARGET_PATH_FOR_STORE_UPLOAD_FILE_ON_SERVER";

if(@move_uploaded_file($_FILES['uploadedfile']['tmp_name'],
$target_path)) {
echo "Success";
} else{
echo "Error";
}

Is This Answer Correct ?    13 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Tell me how can you pass a variable by reference?

1003


Explain what is the difference between $var and $$var?

1042


What is the use of php and mysql?

1081


What is apache and php?

965


What is php destruct?

1017


What is the use of mysql_real_escape_string in php?

950


Explain about looping in PHP?

1112


What is inheritance in php? How many types of inheritance supports php?

1045


What is super keyword in c++?

1057


what is the current salary package in India for a PHP programmer who has 1.5 years experience

3027


What is difference between mysql_connect and mysqli_connect?

1101


What are the different errors in php?

1046


How to create a public static method in PHP?

1074


What are the difference between array_keys() and array_key_exists() in php?

1124


What is stripslashes php?

1014