HTML Upload Forms (HTML Forms tutorials part 7)

১১/১৮/২০১১ ০৯:২১:০০ AM | | 0 comments »

Use an upload form to allow users to upload pictures, movies, or even their own webpages. An upload form is another type of input form, simply set the type attribute to file.

HTML Code:

<input type="file" />

Upload Form:

Max File Size

To limit the size of the file being uploaded and saving you precious webserver space. We make use of a hidden input field and set a few specific attributes.

HTML Code:

<input type="hidden" name="MAX_FILE_SIZE" value="500" />
< input type="file" />

Max File Size:


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.