HyperTextMarkupLanguage

HTML Advanced Functions


| Home | Agenda | Next |

Forms

Sending Information via a Form

If you want users to fill out a form and have the results sent to you, the various FORM tags allow us to create the following:

        <FORM METHOD="POST"
                 ACTION="/cgishell/cgimail.exe">
        <P>
        Input your name
        <INPUT TYPE="text" NAME="custname">
        <P>
        Input your company name
        <Input TYPE="text" NAME="compname">
        <BR>
        <BR>
        <Input TYPE="submit"
            VALUE="Press Here To Send">
        </FORM>


will produce:

Input your name

Input your company name


| Home | Agenda | Next |

T10D036