![]() |
|
|
Welcome to the { mindfrost82.com } forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact contact us. |
|
|||||||
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
|
|||
|
Send Feedback application
Hi, I created a web page for questions and answers and at the end of the page I
created a send feedback button. The action is a submit form reading: <input name='Feedback' type='submit' id='Feedback' value='Send Feedback' /> My question is how to I link this form to send to my email or somewhere I can view the form....thanks Dan |
|
|||
|
Re: Send Feedback application
There are only two ways to process form data -
1. Use mailto:name@example.com as the action of the form 2. Use a server-side scripting method to a) harvest the form's data, b) process it in some manner, e.g., enter it into a database, c) formulate and send an email to one or more email recipients, and d) redirect the visitor to some ending page Method 1 is quite simple, and is also the least reliable. It depends both on your visitor having an email client already installed on their computer - this eliminates public computers, or home users without email clients installed (more and more it seems) - and on the installed email client responding to the mailto call. It is not possible to use this method *and* send the visitor to a thank you page as well. Method 2a is the preferred method, since it eliminates the problems of method 1, but it means that you have to grapple with server-scripting somehow (ASP, CF, PHP, perl, etc.). Method 2b would be to use some third-party form processing, like http://www.bebosoft.com/products/formstogo/. You would have to decide which of these methods is best for your needs, but if it's Method 2a, then start by asking your host what they provide for form processing. If it's 2b, then read their FAQ/instructions carefully. -- Murray --- ICQ 71997575 Adobe Community Expert (If you *MUST* email me, don't LAUGH when you do so!) ================== http://www.projectseven.com/go - DW FAQs, Tutorials & Resources http://www.dwfaq.com - DW FAQs, Tutorials & Resources ================== "dantheman1973" <webforumsuser@macromedia.com> wrote in message news:fo223i$10m$1@forums.macromedia.com... > Hi, I created a web page for questions and answers and at the end of the > page I > created a send feedback button. The action is a submit form reading: > <input > name='Feedback' type='submit' id='Feedback' value='Send Feedback' /> My > question is how to I link this form to send to my email or somewhere I can > view > the form....thanks Dan > |
![]() |
|
| Thread Tools | Search this Thread |
| Display Modes | |
|
|