How can I design an application form for a web site for 'user details' to be sent to my e-mail.<br>
<br>
Any response greatly received!<br>
<br>
Cheers
Hi There, the way to go is to use the form elements (obviously!) in Dreamweaver to create the initial form. So first off go;<br><br>Insert> Form<br><br>Where it says Method make sure it is POST.<br>Now for action put in your desired email address including the mailto command; e.g. mailto:<A HREF="mailto:me@you.com">me@you.com</A><br><br>Now is the important part. Hit F10 to look at your code.<br>Where it says; <FORM method="post" action="mailto:<A HREF="mailto:me@you.com">me@you.com</A>"> add this little bit; enctype="text/plain" as per below;<br><FORM method="post" enctype="text/plain" action="mailto:<A HREF="mailto:me@you.com">me@you.com</A>"><br>This will make the results of the forms you get legible.<br>Your Submit button should simply have a value of "submit" the trick to this is in the action (your email address)<br><br>Hope this helps, I wrote this in a bit of a hurry so let me know if it doesn't work and I can email you the code or something.<br><br>Cheers,<br>Scottos
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.