blink359 Posted April 4, 2010 Share Posted April 4, 2010 Hello, I am making a form for in which people will enter there name adress etc and then upload an image to the form which they will want canvassed, the form must then email every field and the picture to the recepitent. but i dont know how to do the image part. here is what i have so far <form> <p>Full Name:<br /> <input type="text" name="name" border="1" /><br /> Address:<br /> <input type="text" name="address" border="1" /><br /> County:<br /> <input type="text" name="county" border="1" /><br /> Post Code:<br /> <input type="text" name="postcode" border="1" /><br /> Phone Number:<br /> <input type="number" name="phone" border="1" /><br /> Paypal Email:<br /> <input type="email" name="email" border="1" /> </p> <p>Size:</p> A3 Approx. 10" x 14" £21.99 <input type="radio" name="size" value="A3"/><br /> A2 Approx. 16" x 20" £25.99 <input type="radio" name="size" value="A2" /><br /> A1 Approx. 20" x 30" £29.99 <input type="radio" name="size" value="A1" /><br /> A0 Approx. 30" x 45" £69.99 <input type="radio" name="size" value="A0" /><br /> <br /> Image:<br /> <br /> <input type="submit" /> </p> </form> <p>If you If you can help or give me the adress of a website that has the information i need it would be much appriciated. Thanks, Blink359 Quote Link to comment Share on other sites More sharing options...
thumrith Posted April 14, 2010 Share Posted April 14, 2010 Hi To upload the image you must first select the image so you will have to use a file type input in the html. <input type="file" name="name" /> and for it to be uploaded you should use a development language such as php or ... Quote Link to comment Share on other sites More sharing options...
oni-kun Posted April 16, 2010 Share Posted April 16, 2010 You should read up on how to deal with the $_POST data you can retrieve from forms, what are you intending to do with the result, It must be stored before sent using a server side language. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.