Guest User

Untitled

a guest
Jun 19th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Basic Upload</title>
  4. </head>
  5. <body>
  6. <script>
  7. function submeter(){
  8. document.formulario.submit();
  9. }
  10.  
  11. </script>
  12.  
  13. <form method="POST" action="#" name="formulario" enctype="multipart/form-data">
  14. <input id="up" type="file" onchange="submeter()" name="fileUpload" accept="image/*">
  15. </form>
  16.  
  17. </body>
  18. </html>
Add Comment
Please, Sign In to add comment