-
-
Save mmillerxyz/e6676478beb5dcfe8c7e to your computer and use it in GitHub Desktop.
PHP: Upload and Rename File
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form action="" enctype="multipart/form-data" method="post"> | |
<input id="file" name="file" type="file" /> | |
<input id="Submit" name="submit" type="submit" value="Submit" /> | |
</form> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Upload and Rename File | |
if (isset($_POST['submit'])) | |
{ | |
$filename = $_FILES["file"]["name"]; | |
$file_basename = substr($filename, 0, strripos($filename, '.')); // get file extention | |
$file_ext = substr($filename, strripos($filename, '.')); // get file name | |
$filesize = $_FILES["file"]["size"]; | |
$allowed_file_types = array('.doc','.docx','.rtf','.pdf'); | |
if (in_array($file_ext,$allowed_file_types) && ($filesize < 200000)) | |
{ | |
// Rename file | |
$newfilename = md5($file_basename) . $file_ext; | |
if (file_exists("upload/" . $newfilename)) | |
{ | |
// file already exists error | |
echo "You have already uploaded this file."; | |
} | |
else | |
{ | |
move_uploaded_file($_FILES["file"]["tmp_name"], "upload/" . $newfilename); | |
echo "File uploaded successfully."; | |
} | |
} | |
elseif (empty($file_basename)) | |
{ | |
// file selection error | |
echo "Please select a file to upload."; | |
} | |
elseif ($filesize > 200000) | |
{ | |
// file size error | |
echo "The file you are trying to upload is too large."; | |
} | |
else | |
{ | |
// file type error | |
echo "Only these file typs are allowed for upload: " . implode(', ',$allowed_file_types); | |
unlink($_FILES["file"]["tmp_name"]); | |
} | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment