Upload Form:
The upload form is simply a utility for the users to upload pictures, songs, documents and other stuff for you website.This is very useful for your sharing of website.
How to make them?
You know the simple input tags just change the type to file.
Max File SizeTo limit the size of the file being uploaded and saving you precious web server space. We make use of a hidden input field and set a few specific attributes.
Max File Size Code:
The value specified is the maximum allowable KB to be uploaded via this form. A value of 100 will allow a file up to 100kb.
The upload form is simply a utility for the users to upload pictures, songs, documents and other stuff for you website.This is very useful for your sharing of website.
How to make them?
You know the simple input tags just change the type to file.
Upload File Code:
<input type="file" / >
Upload File Code:<input type="file" / >
Max File SizeTo limit the size of the file being uploaded and saving you precious web server space. We make use of a hidden input field and set a few specific attributes.
Max File Size Code:
<input type="hidden" name="MAX_FILE_SIZE" value="500" />
<input type="file" />
Max File Size Example:<input type="file" />
The value specified is the maximum allowable KB to be uploaded via this form. A value of 100 will allow a file up to 100kb.
Comments
Post a Comment