Craig A. Cunningham, Ph.D.
|
Forms
Two types of forms:
- Email
- quick and easy
- requires client machine to have email program and information for user
- doesn't easily allow for collection and organization of data
- sample
- Server-based
- Let's make our own Feedback form, similar to this
- <!-- #BeginEditable "body" --> <p> </p> <p>Please use this form to send feedback on any aspect of WIT to the director. Including your name and email address is optional. If you do include your email address, the director may contact you for more information.</p> <p>If you're reporting a problem or would like WIT staff to do something about your problem, please include your email address so we can ask for more information or tell you when the problem has been fixed!</p> <form action="http://cuip.uchicago.edu/cgi-bin/CGI-Perl-cookbook/FormHandler/FormHandler.pl" method="post" name="wit2004feedback" id="wit2004feedback"> Name: <input type="text" name="name" size="60"> <p>Email address: <input type="text" name="email" size="60" value="noemail@uchicago.edu"> <br> (Change to your own address or leave as is for anonymity.)</p> <p>Please choose a category for your feedback: <select name="category"> <option value="none"></option> <option value="general">General comment about WIT</option> <option value="curriculum">Comment about a part of the WIT curriculum</option> <option value="homeroom">Comment about a homeroom section</option> <option value="mentor">Comment about a mentor</option> <option value="other">Other</option> </select> </p> <p>Which homeroom are you in? <select name="homeroom"> <option value="none"></option> <option value="medillmorning">Medill morning</option> <option value="medillafternoon">Medill afternoon</option> <option value="dlw">Digital Library Workshop</option> <option value="ray morning">Ray School morning</option> <option value="ray afternoon">Ray School afternoon</option> <option value="southcook">South Cook</option> </select> </p> <p>Type a short description of your comment or problem:</p> <p align="center"> <input type="text" name="shortcomment" size="60"> </p> <p>Type a more lengthy description of your comment or problem:</p> <p align="center"> <textarea name="longcomment" wrap="PHYSICAL" cols="60" rows="10"></textarea> </p> <h4 align="center"> <input type="hidden" name="recipient" value="cac@cuip.net"> <input type="hidden" name="subject" value="WIT 2004 Feedback"> </h4> <p align="center"> <input type="submit" value="Submit" name="submit"> <input type="reset" value="Clear Form" name="reset"> </p> <p> </p> </form> <p> </p> <p> </p> <p> </p> <!-- #EndEditable -->
|