Click to See Complete Forum and Search --> : HELP! how do i let....


biketrials_uk
12-18-2002, 08:05 AM
i want to let people submit pictures and a link to me, i would like it so visitors can fill in a form on the website n then it is sent to me via e.mail, i have looked on the formspage but cannot find it, any help appreciated

AdamGundry
12-18-2002, 10:05 AM
There is a form input tag, <input type="file"> which will submit the file the user has chosen with the form. You might be able to use this with a mailto action, or possibly POST it to a form-to-mail script. You should probably specify image formats to allow using the accept parameter.

Check out the specification here (http://www.w3.org/TR/html401/interact/forms.html#edef-INPUT).

Adam