Informatika & Komputer    
   
Daftar Isi
(Sebelumnya) Fork (software development)Form (Berikutnya)

Form (HTML)

An HTML form on a web page allows a user to enter data that is sent to a server for processing. Forms 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).

Contents

Description

Sample form. The form is enclosed in an HTML table for visual layout.

Forms are enclosed in the HTML form tag. This tag specifies the communication endpoint the data entered into the form should be submitted to, and the method of submitting it, GET or POST.

Forms can be made up of standard graphical user interface elements:

  • text input — a simple text box that allows input of a single line of text (an alternative, password, is used for security purposes, in which the characters typed in are invisible or replaced by symbols such as *)
  • checkbox — a check box
  • 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 (typically to send it to a server)
  • 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

The sample image on the right shows all of these elements:

  • 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

These basic elements provide most common graphical user interface (GUI) elements, but not all. For example, there are no equivalents to a combo box, tree view, or grid view.

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.[1]

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 credit card numbers and security codes. 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 (such as the 'Search' text displayed in many search input fields before a search term is entered.) The date input type displays a calendar from which the user can select a date or date range.[2][3]

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.[4] 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.

HTML forms combined with programming languages

Forms are usually combined with programs written in various programming languages 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 (DOM) 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.

Server-side

Server-side programs can do a vast assortment of tasks to create dynamic web sites — from authenticating a login through, for example, Lightweight Directory Access Protocol (LDAP) to retrieving and storing data in a database to spell checking to sending e-mail — quite unlike client-side programs. Some server-side program requests must pass through the web server's Common Gateway Interface to execute the program to actually perform the tasks.

The advantage of server-side over client-side is the concentration of functionality onto one computer (the server) instead of relying on each web browser implementing all of the various functions the same. Processing forms on the server also results in greater security from not trusting data supplied by the client.

Registration form of PHP-based e-commerce web-shop software ZenCart

Some of the interpreted languages commonly used:

Some of the compiled languages commonly used:

PHP

PHP is one very common language used for server-side languages and is one of the few languages created specifically for web programming.[5][6]

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 $_POST or $_GET variables, depending on the value of the method attribute used in the form. Here is a basic form handler PHP script that will post the form's contents, in this case "user", to the page using GET:

form.html

<html><body> <form action="form_handler.php" method="GET">   User Name: <input name="user" type="text" />   <input type="submit" /> </form></body></html>

form_handler.php

<html><body><?php // This will print whatever the user put into the form on the form.html page. $name = $_GET['user']; echo "Hello, ". $name ."!";?></body></html>

Perl programming language

Perl is another language often used for web development. Perl scripts are traditionally used as Common Gateway Interface applications (CGIs). 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 (compatibility with multiple languages is a design goal of the CGI protocol) and there are other ways to make Perl scripts interoperate with a web server than using CGI (such as FastCGI, Plack or Apache's mod_perl).

Perl CGIs were once a very common way to write web applications. But not being specifically designed for web development, Perl is now often viewed as less practical (both for developers and users) than specialized languages like PHP.[7][8][9] This is especially true if Perl modules would need to be installed on the web host or if wanting to use a non-CGI environment that might require additional configuration on the web server. For these reasons, a lot of cheap web hosts nowadays effectively only support PHP and developers of web applications often seek compatibility with them.

A modern Perl 5 CGI using the standard CGI module with a form similar to the one above might look like:

form_handler.pl

#!/usr/bin/perluse CGI qw(:standard); $user = param('user');print header;print html(  body( p("Hello, $user!"),  ),);

Form-to-email scripts

Among the simplest and most commonly needed types of server-side script is that which simply emails the contents of a submitted form. This kind of script is frequently exploited by spammers, however, and many of the most popular form-to-email scripts in use are vulnerable to be hijacked for spamming purposes. One of the most popular scripts of this type was "FormMail.pl" made by Matt's Script Archive. Today, this script is no longer widely used in new development due to lack of updates, security concerns, and configuration difficulty. Alternatives to FormMail.pl that are written in PHP, such as the more feature rich FormToEmail have now become more widely used.

Form builders

Some companies offer forms as a hosted service. Usually, these companies give some kind of visual editor, reporting tools and infrastructure to create and host the forms, that can be embedded into webpages. Web hosting companies such as Bluehost and Doteasy provide templates to their clients as an add-on free service. Other form hosting services offer free contact forms that a user can install on their own website by pasting the service's code into the site's HTML.

See also

References

  1. ^ "HTML/Elements/label". http://www.w3.org/wiki/HTML/Elements/ label.
  2. ^ "Better Web Forms with HTML5 Forms". http://msdn.microsoft.com/en-us/magaz ine/hh547102.aspx.
  3. ^ "HTML5". http://dev.w3.org/html5/spec/single-p age.html#forms.
  4. ^ User-agent support for email based HTML form submission, using a 'mailto' URL as the form action, was proposed in RFC 1867 section 5.6, during the HTML 3.2 era. Various web browsers implemented it by invoking a separate email program or using their own rudimentary SMTP capabilities. Although sometimes unreliable, it was briefly popular as a simple way to transmit form data without involving a web server or CGI scripts.
  5. ^ "PHP: Hypertext Preprocessor". http://www.php.net/.
  6. ^ "Encyclopedia Web". http://www.lampfire.com/encyclopedia- web/php.php.
  7. ^ "Perl vs. PHP vs. Ruby". http://blogs.computerworld.com/15460/ perl_vs_php_vs_ruby.
  8. ^ "PHP and other languages". http://www.php.net/manual/en/faq.lang uages.php.
  9. ^ "Perl versus PHP 5". http://www.oreillynet.com/onlamp/blog /2004/08/perl_versus_php_5.html.

External links

(Sebelumnya) Fork (software development)Form (Berikutnya)