BetterWebSpace Hosting Packages, Unix, Domains, Design ServicesFeatures: PHP, CGI, mySQL, POP3, Webmail, Affordable, Reliable, Low-CostUptime Guarantee, No Hidden Charges
Home Page   Site Index   About Us Contact: Sales | Support | Design

Forms -- Back to the Basics and Beyond
Part One -- Basic Forms Tutorial

By Shelley Lowery

If you've been on the Internet for a while, you've probably filled out a number of online forms. Forms are used to obtain information from your visitors right through your website. Your visitors can input their information into your form, click on a "submit" button and their information will be directed to a location you specify.

If you're running a business on the Internet, using a form to process your customer's orders is an absolute must. I'm amazed at the number of websites that are still processing their customer's orders via snail mail. If you're not automating your ordering process, you're losing a significant amount of business every day.

Most Internet users won't take the time to print out an order form, place it in an envelope and send you their order -- their time is valuable. You must make the ordering process as simple as possible. This includes setting up a form on your website to process their orders electronically. Forms are used for all of the following:

This series will take you step by step through the entire process of setting up a form on your website including:

Basic Form Tutorial

Your first step in creating a form will be to get a good form script. This script will reside on your server within your CGI-bin and will be used to process your form's information. You can find some great scripts here: http://cgi.resourceindex.com/Programs_and_Scripts/Perl/

To insert a form on your web page, we will begin with <FORM> and end with </FORM>. All of the FORM elements will be placed between the FORM tags.

In order for a form to function, it first needs to know how to send the information to the server. There are two methods, GET and POST.

In addition to a form needing to know how to send the information, it also needs to know where to send the information to be processed. The ACTION attribute will contain the URL to the form processing script or it may contain an email address.

Example Form:

<FORM METHOD=post ACTION="/cgi-bin/example.cgi">
  <INPUT type="text" size="10">
  <type="Submit" VALUE="Submit">
</FORM>

Example Email Form:

<FORM ACTION="mailto:you@yourdomain.com">
  Name: <INPUT name="Name" value="" size="10">
  Email: <INPUT name="Email" value="" size="10">
  <INPUT type="submit" value="Submit">
</FORM>

The email form will simply process the information that is placed within your form and send it to your email address. A CGI script is not required.

Notice when the ACTION attribute references an email address, you don't have to include the METHOD attribute.

Form Element Attributes:

Form Element Properties:

These properties are specified by using the TYPE attribute within the form's INPUT element.

INPUT

<INPUT TYPE="?">

The INPUT element has the following properties that may be used:

TEXT BOXES

<INPUT TYPE="text">

Enables users to input text such as an email address.

<FORM METHOD=post ACTION="/cgi-bin/example.cgi">
  <INPUT type="TEXT" size="10" maxlength="30">
  <INPUT type="Submit" VALUE="Submit">
</FORM>

Text Box Attributes

HIDDEN

<INPUT TYPE="hidden">

Used to send information to the form processing script that you don't want your visitors to see. Nothing will show through the browser.

<INPUT type="hidden" name="redirect" value="http://www.yourdomain.com/">

Hidden Attributes

PASSWORD

<INPUT TYPE="password">

Used to enable users to enter a password. When a password is typed in, asterisks will appear instead of text.

<FORM METHOD=post ACTION="/cgi-bin/example.cgi">
  <INPUT type="password" size="10" maxlength="30">
  <INPUT type="Submit" VALUE="Submit">
</FORM>


Password Attributes

CHECKBOX

<INPUT TYPE="checkbox">

Enables the user to select multiple options.

<FORM METHOD=post ACTION="/cgi-bin/example.cgi">
  <INPUT type="CHECKBOX" name="selection1"> Selection 1
  <INPUT type="CHECKBOX" name="selection2"> Selection 2
  <INPUT type="CHECKBOX" name="selection3"> Selection 3
  <INPUT type="Submit" value="Submit">
</FORM>


Check Box Attributes

In the next part of this series, we will finish the form element properties and move on to some more advanced form options. Make sure you don't miss this powerful series.

Copyright © Shelley Lowery 2002.

About the Author:

Shelley Lowery is the author of the highly acclaimed ebook series, Web Design Mastery -- an in-depth guide to professional web design that is rapidly becoming known as the "Bible" for professional web design. http://www.webdesignmastery.com

<< Using Tables for Formatting Advanced Forms Tutorial >>
More Articles