PHP ─ File UploadingA PHP script can be used with a HTML form to allow users to upload files to the server. Initially files are uploaded into a temporary directory and then relocated to a target destination by a PHP script. Information in the phpinfo.php page describes the temporary directory that is used for file uploads as upload_tmp_dir and the maximum permitted size of files that can be uploaded is stated as upload_max_filesize. These parameters are set into PHP configuration filephp.ini The process of uploading a file follows these steps:
An uploaded file could be a text file or image file or any document. Creating an Upload Form The following HTML code creates an uploader form. This form is having method attribute set to post and enctype attribute is set to multipart/form-data
<html>
<head> <title>File Uploading Form</title> </head> <body> <h3>File Upload:</h3> Select a file to upload: <br /> <form action="/php/file_uploader.php" method="post" enctype="multipart/form-data"> <input type="file" name="file" size="50" /> <br /> <input type="submit" value="Upload File" /> </form> </body> </html> This will display the following result: Creating an upload script There is one global PHP variable called $_FILES. This variable is an associate double dimension array and keeps all the information related to uploaded file. So if the value assigned to the input's name attribute in uploading form was file, then PHP would create the following five variables:
<?php
if( $_FILES['file']['name'] != "" ) { copy( $_FILES['file']['name'], "/var/www/html" ) or die( "Could not copy file!"); } else { die("No file specified!"); } ?> <html> <head> <title>Uploading Complete</title> </head> <body> <h2>Uploaded File Info:</h2> <ul> <li>Sent file: <?php echo $_FILES['file']['name']; ?> <li>File size: <?php echo $_FILES['file']['size']; ?> bytes <li>File type: <?php echo $_FILES['file']['type']; ?> </ul> </body> </html> It will produce the following result:
|