• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/22

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

22 Cards in this Set

  • Front
  • Back
Input control
An input control is any type of input mechanism on a form
Data input control
A data input control can be a radio button(radio), a checkbox, a submit button, a reset button, or a select menu.
Text input control
A text input control allows the user to enter text through the following
Text box
A text box (text), for small amounts of text
Textarea box
Textarea- for larger amounts of text
text contol
Text control creates a text box that is used for a single line of input
size
Size determines the number of characters that are displayed on the form
maxlength
Maxlength specifies the maximim length of the input field
password control
For entering a password.
Also creates a text box used for a single line of input except that the characters entered into the field can appear as asterisks or bullets
radio control
Radio control limits the Web page visitor to only one choice from a list of choices
Radio button
Or option button , which typically appears as an open circle
Checkbox control
Checkbox control allows a Web page visitor to select one item from a single-item list
Select control
A select control creates a selection menu from which the visitor selects one or more choices
textarea control
a Texterea control creates a field that allows multiple lines of input
fieldset control
Fieldset control helps to group related form elements together
reset control
Creates reset buttons respectively
submit control
Creates submit buttons respectively
Action attribute
The Action attribute of the <form> tag specifies the action that is taken when the form is submitted
CGI script
A CGI script is a program written in a programming language(PHP or Perl) that communicates with the Web server
Method attribute
The method attribute of the <form> tag specifies he manner in which the data entered in the form is sent to the server to be processed
Get method
The Get method sends the name-value pairs to the end of the URL indicated in the action attribute
Post method
The post method sends a separate data file with the name-value pairs to the URL (or e-mail address) indicated in the action attribute