I have read and built the code from snippets for a feedback form.
but what I wish to do is send the feedback to an email address or to pages hidden in the background that need to be looked at to see the feedback.
Here is an example of the code I have so far.
::::::::::::::CODE :::::::::::::::::
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
" <html xmlns=" <head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<title>Feedback Form</title>
</head>
<body>
Please complete this form to submit your feedback: <br />
<form action="handle_form.php">
Mr. <input type="radio" name="title" value="Mr." />
Mrs. <input type="radio" name="title" value="Mrs." />
Ms. <input type="radio" name="title" value="Ms." />
<br />
Name: <input type="text" name="name" size="20" />
<br />
Email Address: <input type="text" name="email" size="20" />
<br />
Response: <select name="response">
<option value="excellent">This is excellent.</option>
<option value="okay">This is okay.</option>
<option value="boring">This is boring.</option>
</select>
<br />
Comments: <textarea name="comments" rows="3" cols="30"></textarea>
<br />
<input type="submit" name="submit" value="Send My Feedback" />
</form>
<!-- Script 3.2 - feedback.html -->
</body>
</html>
:::::::::::::: END CODE :::::::::::::::::::::::
Chad L. Miller
Lean Sigma Business Consultant
Get a working process, reduce variation, predict the future
but what I wish to do is send the feedback to an email address or to pages hidden in the background that need to be looked at to see the feedback.
Here is an example of the code I have so far.
::::::::::::::CODE :::::::::::::::::
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
" <html xmlns=" <head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<title>Feedback Form</title>
</head>
<body>
Please complete this form to submit your feedback: <br />
<form action="handle_form.php">
Mr. <input type="radio" name="title" value="Mr." />
Mrs. <input type="radio" name="title" value="Mrs." />
Ms. <input type="radio" name="title" value="Ms." />
<br />
Name: <input type="text" name="name" size="20" />
<br />
Email Address: <input type="text" name="email" size="20" />
<br />
Response: <select name="response">
<option value="excellent">This is excellent.</option>
<option value="okay">This is okay.</option>
<option value="boring">This is boring.</option>
</select>
<br />
Comments: <textarea name="comments" rows="3" cols="30"></textarea>
<br />
<input type="submit" name="submit" value="Send My Feedback" />
</form>
<!-- Script 3.2 - feedback.html -->
</body>
</html>
:::::::::::::: END CODE :::::::::::::::::::::::
Chad L. Miller
Lean Sigma Business Consultant
Get a working process, reduce variation, predict the future