Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created June 17, 2019 00:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/4a4ba9970755e9172bba0d8b9257acda to your computer and use it in GitHub Desktop.
Save parzibyte/4a4ba9970755e9172bba0d8b9257acda to your computer and use it in GitHub Desktop.
<!--
Tomado de: https://parzibyte.me/blog/2018/11/27/subir-archivo-php-metodo-simple/
El atributo enctype es importante, si no, no nos permitirá subir el archivo
-->
<form action="3-subir.php" method="post" enctype="multipart/form-data">
<input type="file" name="archivo">
<br><br>
<input type="submit" value="Enviar">
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment