Skip to content

Instantly share code, notes, and snippets.

@vinicius-stutz
Last active March 5, 2024 12:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save vinicius-stutz/05d6c71163a71b97b80d to your computer and use it in GitHub Desktop.
Save vinicius-stutz/05d6c71163a71b97b80d to your computer and use it in GitHub Desktop.
File Upload with PHP
<html>
<head>
<title>PHP: File Upload</title>
</head>
<body>
<!-- The data encoding type, enctype, MUST be specified as below -->
<form enctype="multipart/form-data" action="upload.php" method="POST">
<!-- MAX_FILE_SIZE must precede the file input field -->
<input type="hidden" name="MAX_FILE_SIZE" value="10000000" />
<!-- Name of input element determines name in $_FILES array -->
Send this file: <input name="userfile" type="file" />
<input type="submit" value="Send File" />
</form>
</body>
</html>
<?php
$uploaddir ='\\your_folder\\';
$uploadfile = $uploaddir . basename($_FILES['userfile']['name']);
echo '<pre>';
if (move_uploaded_file($_FILES['userfile']['tmp_name'], $uploadfile)) {
echo "File is valid, and was successfully uploaded.\n";
} else {
echo "Possible file upload attack!\n";
}
echo 'Here is some more debugging info:';
print_r($_FILES);
print "</pre>";
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment