Advertisement
Guest User

Untitled

a guest
Dec 9th, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. <html>
  2. <head>
  3. <script language="JavaScript">
  4. <!--
  5. function teste() {
  6. if (document.upload.arquivo.value=="") {
  7. alert("Arquivo para upload não informado!")
  8. document.upload.arquivo.focus()
  9. return false
  10. }
  11. }
  12. //-->
  13. </script>
  14. </head>
  15. <body>
  16. <h2>Upload Simples</h2><br>
  17. <form name="upload" action="upload.php" method="post" enctype="multipart/form-data" onsubmit="return teste()">
  18. <input type="file" name="arquivo" size="60">
  19. <br>
  20. <input type="submit" name="enviar" value="Upload!">
  21. </form>
  22. </body>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement