Form (HTML)
A webform, web form or HTML form on a web page allows a user to enter data that is sent to a server for processing. Forms can resemble paper or database forms because web users fill out the forms using checkboxes, radio buttons, or text fields. For example, forms can be used to enter shipping or credit card data to order a product, or can be used to retrieve search results from a search engine.
Description
Forms are enclosed in the HTML<form>
element. This element specifies the communication endpoint the data entered into the form should be submitted to, and the method of submitting the data, GET
or POST
.Elements
Forms can be made up of standard graphical user interface elements:-
<text>
— a simple text box that allows input of a single line of text. -
<email>
- a type of<text>
that requires a partially validated email address -
<number>
- a type of<text>
that requires a number -
<password>
— similar to<text>
, it is used for security purposes, in which the characters typed in are invisible or replaced by symbols such as *) -
<radio>
— a radio button -
<file>
— a file select control for uploading a file -
<reset>
— a reset button that, when activated, tells the browser to restore the values to their initial values. -
<submit>
— a button that tells the browser to take action on the form -
<textarea>
— much like the<text>
input field except a<textarea>
allows for multiple rows of data to be shown and entered -
<select>
— a drop-down list that displays a list of items a user can select from
- a text box asking for your name
- a pair of radio buttons asking you to pick your sex
- a select box giving you a list of eye colors to choose from
- a pair of check boxes to click on if they apply to you
- a text area to describe your athletic ability
- a submit button to send it to the server
A grid view, however, can be mimicked by using a standard HTML table with each cell containing a text input element. A tree view could also be mimicked through nested tables or, more semantically appropriately, nested lists. In both cases, a server-side process is responsible for processing the information, while JavaScript handles the user-interaction. Implementations of these interface elements are available through JavaScript libraries such as jQuery.
HTML 4 introduced the
<label>
tag, which is intended to represent a caption in a user interface, and can be associated with a specific form control by specifying the id
attribute of the control in the label tag's for
attribute. This allows labels to stay with their elements when a window is resized and to allow more desktop-like functionality e.g. clicking a radio button or checkbox's label will activate the associated input element.HTML 5 introduces a number of input tags that can be represented by other interface elements. Some are based upon text input fields and are intended to input and validate specific common data. These include
<email>
to enter email addresses, <tel>
for telephone numbers, <number>
for numeric values. There are additional attributes to specify required fields, fields that should have keyboard focus when the web page containing the form is loaded, and placeholder text that is displayed within the field but is not user input These tasks used to be handled with JavaScript, but had become so common that support for them was added to the standard. The <date>
input type displays a calendar from which the user can select a date or date range. And the color
input type can be represented as an input text simply checking the value entered is a correct hexadecimal representation of a color, according to the specification, or a color picker widget.Submission
When data that has been entered into HTML forms is submitted, the names and values in the form elements are encoded and sent to the server in an HTTP request message using GET or POST. Historically, an email transport was also used. The default mime type, Internet media type application/x-www-form-urlencoded, is based on a very early version of the general URI percent-encoding rules, with a number of modifications such as newline normalization and replacing spaces with "+
" instead of "%20
". Another possible encoding, Internet media type multipart/form-data, is also available and is common for POST-based file submissions.Use with programming languages
Forms are usually combined with programs written in various programming language to allow developers to create dynamic web sites. The most popular languages include both client-side and/or server-side languages.Although any programming language can be used on the server to process a form's data, the most commonly used languages are scripting languages, which tend to have stronger string handling functionality than programming languages such as C, and also have automatic memory management which helps to prevent buffer overrun attacks.
Client-side
The de facto client-side scripting language for web sites is JavaScript.Using JavaScript on the Document Object Model leads to the method of Dynamic HTML that allows dynamic creation and modification of a web page within the browser.
While client-side languages used in conjunction with forms are limited, they often can serve to do pre-validation of the form data and/or to prepare the form data to send to a server-side program. This usage is being replaced, however, by HTML5's new input field types and required attribute.
Server-side execution
Server-side code can do a vast assortment of tasks to create dynamic web sites that, for technical or security reasons, client-side code cannot — from authenticating a login, to retrieving and storing data in a database, to spell checking, to sending e-mail. A significant advantage to server-side over client-side execution is the concentration of functionality onto the server rather than relying on different web browsers to implement various functions in consistent, standardized ways. In addition, processing forms on a server often results in increased security if server-side execution is designed not to trust the data supplied by the client and includes such techniques as HTML sanitization. One disadvantage to server side code is scalability—server side processing for all users occurs on the server, while client side processing occurs on individual client computers.Interpreted languages
Some of the interpreted languages commonly used to design interactive forms in web development are PHP, Python, Ruby, Perl, JSP, Adobe ColdFusion and some of the compiled languages commonly used are Java and C# with ASP.NET.PHP
is one very common language used for server-side "programming" and is one of the few languages created specifically for web programming.To use PHP with an HTML form, the URL of the PHP script is specified in the
action
attribute of the form tag. The target PHP file then accesses the data passed by the form through PHP's method
attribute used in the form. Here is a basic form handler PHP script that will display the contents of the input field on the page:'
'
// This will print whatever the user entered into the form.html page.
$name = filter_input;
echo "Hello, ".$name."!";
?>
The sample code above uses PHP's
Perl programming language
is another language often used for web development. Perl scripts are traditionally used as Common Gateway Interface applications. In fact, Perl is such a common way to write CGIs that the two are often confused. CGIs may be written in other languages than Perl and there are other ways to make Perl scripts interoperate with a web server than using CGI.Perl CGIs were once a very common way to write web applications. However, many web hosts today effectively only support PHP, and developers of web applications often seek compatibility with them.
A modern Perl 5 CGI using the CGI module with a form similar to the one above might look like:
- !/usr/bin/perl
use CGI qw;
my $name= param;
print header;
print html;