Skip to content

Instantly share code, notes, and snippets.

@chihebnabil
Created August 26, 2016 14:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chihebnabil/29fb64f0226c44cf2e465448231d1374 to your computer and use it in GitHub Desktop.
Save chihebnabil/29fb64f0226c44cf2e465448231d1374 to your computer and use it in GitHub Desktop.
?php
// In PHP versions earlier than 4.1.0, $HTTP_POST_FILES should be used instead
// of $_FILES.
$uploaddir = '/var/www/uploads/';
$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