PHP File Upload



PHP File Upload

In PHP file upload concept used to upload files to the server.

we need to upload file in web application such as upload resume in job portal site, upload profile picture in social networking site, upload images in gallery and upload file as attachment for send mail.
All this kind of uploading we use file upload concept to upload image file, text file or any document to the server.

HTML design form for upload file.

PHP File Upload Note :

  • Make sure the method=”post”
  • Must use attribute enctype=”multipart/form-data” in form tag.

HTML upload.html script for file upload

<html>
<body>

<form action="fileupload.php" enctype="multipart/form-data" method="post">
Select image :
<input type="file" name="file"><br/>
<input type="submit" value="Upload" name="Submit1">

</form>

</body>
</html>

The output of above script :