Skip to content

Instantly share code, notes, and snippets.

@andreafortuna
Created February 7, 2016 14:32
Show Gist options
  • Save andreafortuna/8f7927e2787064b8bb59 to your computer and use it in GitHub Desktop.
Save andreafortuna/8f7927e2787064b8bb59 to your computer and use it in GitHub Desktop.
<?php
if (isset($_FILES['myFile'])) {
// Example:
move_uploaded_file($_FILES['myFile']['tmp_name'], "uploads/" . $_FILES['myFile']['name']);
echo 'Upload completed!';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment