Upload File PHP code example
By Sergey Skudaev
![]()
![]()
![]()
![]()
![]()
By Sergey Skudaev
First time, when I tried to write PHP code for uploading file from my PC to my Web Server, I spent significant amount of time. You can take this PHP code example and modify it for your needs.
To prevent overwriting files uploaded earlier I use current date and time for a new file names. The PHP code example comprised of two PHP files. The first PHP file represent a form, that allows a user to browse local file system, select a file for uploading and submit the form. . I named it "upload_file.php". The second PHP file is an action template that executes uploading the selected file. I named it "act_upload_file.php".
On my Windows PC, I created a folder "uploadfile" inside the htdocs folder and place both files inside uploadfile folder. Besides, I created "upload" folder inside the "uploadfile" folder.
On the hosting web server you have to make sure that user has write permission for "upload" folder. If you use this code example on your local Windows PC you don't have to care about it.
<?php
print('<html>');
print('<head><title>');
print('Upload File Example</title>');
print("</head>");
print('<body>');
print('<form name=myform ENCTYPE="multipart/form-data" method="post" action="act_upload_file.php">');
print('<table class="aaa" align="center" width=80% border=0>');
print('<tr><th align="center">Upload File Exaple</th></tr>');
print('<INPUT TYPE="hidden" name="MAX_FILE_SIZE" value="1000000">');
print('<tr><td align="center">Upload File: <INPUT
NAME="uploaded_file" TYPE="file"></td></tr>');
print('<tr><td> </td></tr>');
print('<tr><td align="center" ><input type=submit name=submit value="Upload"></td></tr>');
print('</table></form>');
print('<body></html>');
?>
Listing 2. "act_upload_file.php"
<?php
$uploaded=0;
$ext="";
//generate unique file name using time:
$newfilename= md5(rand() * time());
//do we have a file?
if((!empty($_FILES["uploaded_file"])) && ($_FILES['uploaded_file']['error'] == 0))
{
$filename =strtolower(basename($_FILES['uploaded_file']['name']));
$ext = substr($filename, strrpos($filename, '.') + 1);
if ((($ext == "jpg")||($ext == "JPG")) && ($_FILES["uploaded_file"]["size"] < 500000)&&(($_FILES["uploaded_file"]["type"] == "image/jpeg")||($_FILES["uploaded_file"]["type"] == "image/pjpeg")))
{
//Determine the path to which we want to save this file
$ext=".".$ext;
$newname = dirname(__FILE__).'/upload/'.$newfilename.$ext;
if ((move_uploaded_file($_FILES['uploaded_file']['tmp_name'],$newname)))
{
echo "File uploaded successfully!";
$uploaded=1;
}
else
{
echo "Error:!";
print('<p><a href="upload_file.php?">Back</a></p>');
}
} else {
echo "Error: Only .jpg files is allowed less than 500Kb";
print('<p><a href="upload_file.php">Back</a></p>');
}
} else {
echo "Error! File is not uploaded!";
print('<p><a href="upload_file.php">Back</a></p>');
}
?>
If you want to limit image width and height usegetimagesize function:
list($width, $height, $type, $attr) =
getimagesize($_FILES['uploaded_file']['tmp_name']);
Try to modify the PHP code example. Provide user an input field for a new file name. Think, how to check if this file already exists on the server and alert the user.
Please rate the tutorial
Learn SQL Programming By Examples [Kindle Edition]2.99
Learn PHP Programming by Examples [Kindle Edition] $2.99
Learn Visual Basic 6.0 [Kindle Edition] $1.99
How to Build Your Own Web Site from Scratch [Kindle Edition] $1.49
New-trip.com website source code
| Comments | |
|---|---|
- Home
- uploadfilephpcode
- Batch Files
- Environment Variables
- Delete Trojan horse
- Java Properties
- Form Validation
- Display Image PHP
- Upload File PHP
- phpMyAdmin
- Domain Name
- Name Servers
- CPanel: Mail
- CPanel: MySQL
- CPanel: File Manager
- User_Auth. Demo
- Affordable Hosting
- Hosting Expenses
- Modeless Popup
- Virtual Server
- Read Screen Resolution
- 301 Redirect
- PHP + Oracle 1
- PHP + Oracle 2
- Hosting Tips
- Monitor Site
- Create Gallery
- Authentication Script
- Display from file
- CSS Fixed Layout
- CSS Float Layout
- CSS Tables
- Loading Speed
- Set Shopping Cart
- My Best CSS Layout
- Using Twitter
- SEO tips
- Database Design
- Password Keeper
- MySQL and Excel
- Learn MySQL
- Learn SQL
- Learn PHP
- Learn C++
- Learn Java
- Learn Visual Basic
- Site map
- Registration
Web programming Tips