+ 1
How to upload files in html
4 Antworten
+ 6
@Edson thank you so much
+ 5
@Edson
What if I want to upload images, or something else apart from a form?
+ 3
1) put in your form the follow attributes:
enctype="multipart/form-data"
2) use the method POST for submit your form;
3) Use the type "file" in a <input> tag
**************** EXEMPLE *******************
<!DOCTYPE html>
<html>
<body>
<form action="file_to_received_data.php" method="post" enctype="multipart/form-data">
<input type="file" name="input_name">
<input type="submit" value="Upload" name="submit">
</form>
</body>
</html>
+ 3
@neicore
For multiples uploads at the same time, use the boolean attribute "multiple" in a <input> tag
Exemple: <input type="file" name="my_file" multiple />
You must use a form in your web page to get a file. You can put several forms at the same page (without nested them), one just to get the files, but the data will be sent separeted, even the target attribute points to the same place.