PHP File Uploads
Overview: In this article we will show you how simple it is to upload File from the browser.
Uploading a file is a very simple process, To upload a file to a Web server via an HTML form interface, we will be performing the following tasks.
- First we create a HTML form (upload_form.htm)
- Create an PHP script (upload_file.php) that actually uploads the file!
Creating the HTML Upload form
Upload a File
Upload a File
Note that in the form tag we use the enctype="multipart/form-data" attribute so that the browser knows that more than just text variables are coming at it.
We also have a hidden feild with the name name="MAX_FILE_SIZE" which set's the maximum file size in bytes that can be uploaded.
Now that we have the HTML form we create upload_file.php which actually uploads the file.
Successful File Upload!
Success!
You sent: echo "$our_file_name"; ?>
, a echo "$our_file_size"; ?>
byte file with a mime type of echo "$our_file_type"; ?>
.
For Windows based machine you have modify the path click here to get the windows example code file.
|
Common Error's The most common error is caused because write permissions are not set for the upload directory. In the above example assumes that you have the upload with proper write permissions. |
|
Home | Privacy Policy | Contact Us | Terms of Service
(c) 2002 - 2018 www.PHPbuddy.com Unauthorized reproduction/replication of any part of this site is prohibited.
|