![]() |
Syllabus
• Class Schedule
• Dictionary
• BACK to
Previous Page
|
GRC 175 Class Lessons |
Lesson 10—HTML Forms |
| Updated 9.15.04Syllabus • Class Schedule • Dictionary • BACK to Previous Page |
ResourcseThere are a number of free form processors that allow you to add forms to your web site without any CGI programming. Check out allforms at mailjo.net. Terminoloy
|
User FeedbackEmail is the easiest to set up of all of the ways to get feedback from site visitors. This is done simply by creating a link in this form: >a href="mailto:accountname@emailserver.com"< A form is another way to give visitors an easy way to communicate with you and for the site to collect data from its visitors. It provides a very easy and dynamic way to give feedback to the web site and is one of the more important sources of interactivity on the Web. It can provide such site features as:
Form ProcessingAs explained in the text, the information which the user inputs into the various form elements must be processed so that they are received in a useable form. A script is required to process the form data, usere done on the server, not on the client machine. These technologies (server-side scripts based on Perl, VBScript, JavaSciprt, Java, C++; Macromedia ColdFusion, ASP, ASP.NET, PHP and Java Server Pages or JSP) are beyond this course. They require the skills of a programmer usually to set up and manage. PHP is the technology used in the Web Design & Publishing III course offered at CSN, where the designer learns to set up the back-end of the web site to process forms using a database based on MySQL. A free form-processing service is referred to in the sidebar which beginners can use without having to set up the server-side scripts or databases. Form ElementsIt can be difficult to get your forms to behave the same in all browsers. It is best to develop your form to the browser that displays them at the largest size. (See the advice the WebMonkey gives.) In this course, we learn to desire and create the forms (the console used by the client). But after you have designed your form, it will not be functional. For the form to be functional, you'll have to run a CGI (Common Gateway Interface) script on the server side.The HTML just creates the appearance or the interface of a form. Here are the basic HTML tags used in forms. To see how to set up the various kinds of form elements view the GeekManuals tutorial and read Chapter 15.
|
||
| Syllabus • Class Schedule • Dictionary • BACK to Previous Page |