The file field for sending a file
The file field for submitting a file is created using the input tag with the type attribute set to file.
Example
Let's see how this type of input works:
<input type="file" name="file">
:
Example
You can create several fields for selecting a file:
<input type="file" name="file1">
<input type="file" name="file2">
:
See also
-
checkbox,
with which you can implement a flag -
radio switches,
with which you can make a choice