Advertisement
hercioneto

form_imagem.html

Jul 24th, 2023
3,097
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.42 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Envio de Imagem</title>
  5. </head>
  6. <body>
  7.     <h1>Envie sua imagem</h1>
  8.     <form action="receber_imagem.php" method="post" enctype="multipart/form-data">
  9.         <label for="imagem">Escolha uma imagem:</label>
  10.         <input type="file" name="imagem" id="imagem" accept="image/*">
  11.         <br>
  12.         <input type="submit" value="Enviar Imagem">
  13.     </form>
  14. </body>
  15. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement