HTML web form with attachment functions

You need one of these:

encType="multipart/form-data"

in the Form Tag

and then

<INPUT id="tbUploadFile" tabIndex="3" type="file" name="tbUploadFile" >

somewhere in the Body Tag.

But then you need some Scripting code to do something with the file once is sent to the Internet.

Have a look on HotScripts.com for examples.
 
Back
Top Bottom