jonathan33
12-22-2005, 03:00 PM
Basically I created an html survey with checkboxes, when the customer fills it out I want the results sent to an email address.
Right now this is what I have, but when submit the results, I want to the question and the results in a easy to read format. I want to keep this as simple as I can, they fill out the form and the results are emailed.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<body>
<form action="MAILTO:jonathanluvskandy@hotmail.com" method="post" enctype="text/plain">
<form action="mailto:jonathanluvskandy@hotmail.com" method="get" enctype="text/plain">
<head>
<title>Survey</title>
</head>
<body>
<div align="center">
CUSTOMER EVALUATION AND FEEDBACK.</p>
<p align="left"> At AmSpec, we value the opinion of you, our customer, and we use your input to improve our products and services. When it comes to customer satisfaction, we consider 99% not to be 100%. Please fill out this card and drop it in the mail. Thank you for your time and input.</p>
<p align="left">1. Is our staff responsive to your problems and concerns?
<input type="checkbox" name="Q" value="Yes">
Yes
<input type="checkbox" name="Q" value="No">
No</p>
<p align="left">2. Are we doing everything we should to serve your needs?
<input type="checkbox" name="Q" value="Yes">
Yes
<input type="checkbox" name="Q" value="No">
No </p>
<p align="left">3. Are our field personnel prompt, courteous, and efficient?
<input type="checkbox" name="Q" value="Yes">
Yes
<input type="checkbox" name="Q" value="No">
No </p>
<p align="left">4. Do we keep you informed of issues that are important to you?
<input type="checkbox" name="Q" value="Yes">
Yes
<input type="checkbox" name="Q" value="No">
No</p>
<p align="left">5. Would you recommend us to an associate?
<input type="checkbox" name="Q" value="Yes">
Yes
<input type="checkbox" name="Q" value="No">
No
<p align="left">If you answered "No" to any of the above questions, please explain below, or call our office at
<p align="left">
First name:
<input type="text" name="firstname">
Last name:
<input type="text" name="lastname">
<p align="left">Company:
<input type="text" name="company">
<p align="left">Phone Number
<input type="text" name="Phone Number">
<form name="form1" method="post" action="">
<input type=submit value="Submit Your Comments">
</form>
<p align="left">
<p align="left">
<p align="left">
</div>
</body>
</html>
Right now this is what I have, but when submit the results, I want to the question and the results in a easy to read format. I want to keep this as simple as I can, they fill out the form and the results are emailed.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<body>
<form action="MAILTO:jonathanluvskandy@hotmail.com" method="post" enctype="text/plain">
<form action="mailto:jonathanluvskandy@hotmail.com" method="get" enctype="text/plain">
<head>
<title>Survey</title>
</head>
<body>
<div align="center">
CUSTOMER EVALUATION AND FEEDBACK.</p>
<p align="left"> At AmSpec, we value the opinion of you, our customer, and we use your input to improve our products and services. When it comes to customer satisfaction, we consider 99% not to be 100%. Please fill out this card and drop it in the mail. Thank you for your time and input.</p>
<p align="left">1. Is our staff responsive to your problems and concerns?
<input type="checkbox" name="Q" value="Yes">
Yes
<input type="checkbox" name="Q" value="No">
No</p>
<p align="left">2. Are we doing everything we should to serve your needs?
<input type="checkbox" name="Q" value="Yes">
Yes
<input type="checkbox" name="Q" value="No">
No </p>
<p align="left">3. Are our field personnel prompt, courteous, and efficient?
<input type="checkbox" name="Q" value="Yes">
Yes
<input type="checkbox" name="Q" value="No">
No </p>
<p align="left">4. Do we keep you informed of issues that are important to you?
<input type="checkbox" name="Q" value="Yes">
Yes
<input type="checkbox" name="Q" value="No">
No</p>
<p align="left">5. Would you recommend us to an associate?
<input type="checkbox" name="Q" value="Yes">
Yes
<input type="checkbox" name="Q" value="No">
No
<p align="left">If you answered "No" to any of the above questions, please explain below, or call our office at
<p align="left">
First name:
<input type="text" name="firstname">
Last name:
<input type="text" name="lastname">
<p align="left">Company:
<input type="text" name="company">
<p align="left">Phone Number
<input type="text" name="Phone Number">
<form name="form1" method="post" action="">
<input type=submit value="Submit Your Comments">
</form>
<p align="left">
<p align="left">
<p align="left">
</div>
</body>
</html>