/ Published in: PHP
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<?php // Configuration - Your Options $allowed_filetypes = array('.jpg','.gif','.bmp','.png'); // These will be the types of file that will pass the validation. $max_filesize = 524288; // Maximum filesize in BYTES (currently 0.5MB). $upload_path = './files/'; // The place the files will be uploaded to (currently a 'files' directory). $filename = $_FILES['userfile']['name']; // Get the name of the file (including file extension). // Check if the filetype is allowed, if not DIE and inform the user. // Now check the filesize, if it is too large then DIE and inform the user. // Check if we can upload to the specified path, if not DIE and inform the user. // Upload the file to your specified path. echo 'Your file upload was successful, view the file <a href="' . $upload_path . $filename . '" title="Your File">here</a>'; // It worked. else echo 'There was an error during the file upload. Please try again.'; // It failed :(. ?>
URL: http://www.zymic.com/tutorials/php/creating-a-file-upload-form-with-php/