16 Nov 2006 at 12:10 #1 smokedog smokedog Soldato Joined 28 Jul 2004 Posts 5,789 How do you create a HTML form that can send attachments?
16 Nov 2006 at 13:14 #2 meghatronic meghatronic Soldato Joined 24 Nov 2002 Posts 16,378 Location 38.744281°N 104.846806°W Server side language? Php/ASP... google file upload php.
16 Nov 2006 at 16:03 #3 !bluetonic! !bluetonic! Soldato Joined 17 Nov 2005 Posts 3,094 Location Swindon, UK 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.
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.