Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Create a Feedback form

Status
Not open for further replies.

CHUDMAN

Programmer
Dec 12, 2000
35
US
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
 
as Chris pointed out, this is now out of the scope of this forum, and judging by this line:

Code:
<form action="handle_form.php">

I would guess you already have something there that does the processing. So I would suggest you post this in the PHP forum, for any help regarding the processing part of the form.

forum434

----------------------------------
Ignorance is not necessarily Bliss, case in point:
Unknown has caused an Unknown Error on Unknown and must be shutdown to prevent damage to Unknown.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top