1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 3. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> 4. <head> 5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> 6. <title>Feedback Form</title> 7. </head> 8. <body> 9. <!-- Script 3.2 - feedback.html --> 10. <div><p>Please complete this form to submit your feedback:</p> 11. 12. <!-- <form action="handle_form.php" method="post"> --> 13. <form action="script_03_03-getExample.php" method="get"> 14. 15. <p>Name: <select name="title"> 16. <option value="Mr.">Mr.</option> 17. <option value="Mrs.">Mrs.</option> 18. <option value="Ms.">Ms.</option> 19. </select> <input type="text" name="name" size="20" /></p> 20. 21. <p>Email Address: <input type="text" name="email" size="20" /></p> 22. 23. <p>Response: This is... 24. <input type="radio" name="response" value="excellent" /> excellent 25. <input type="radio" name="response" value="okay" /> okay 26. <input type="radio" name="response" value="boring" /> boring</p> 27. 28. <p>Comments: <textarea name="comments" rows="3" cols="30"></textarea></p> 29. 30. <input type="submit" name="submit" value="Send My Feedback" /> 31. 32. </form> 33. </div> 34. </body> 35. </html>