Upload fields allow the user to choose the local file and upload into the server .Upload fields has two type files - an empty text field and Browse button which open the local window on the user computer.
We set the type attribute of the <input> tag to "file".here i teach you with example now see
Example:
Your Result:
HTML Max file size field
we know that file sharing across the internet is very complicated and it require many secrity layers.only html cannot ensure the safe file sharing .By using a Max-File-Size hidden field can allow the limited size of file sharing.Now here i teach you with example
Example:
Your Result:
We set the type attribute of the <input> tag to "file".here i teach you with example now see
Example:
<form name="HTML Form" action="mailto:youremail@email.com" method="post">
<input type="file" name="uploadField" />
</form>
Your Result:
HTML Max file size field
we know that file sharing across the internet is very complicated and it require many secrity layers.only html cannot ensure the safe file sharing .By using a Max-File-Size hidden field can allow the limited size of file sharing.Now here i teach you with example
Example:
<form name="HTML Form" action="mailto:youremail@email.com" method="post"> <input type="hidden" name="MAX_FILE_SIZE" value="400" /> <input type="file" name="uploadField" /> </form>
Your Result:
No comments:
Post a Comment