A form handler is a server side script, which is used to process the online form information. HTML (Hypertext Markup Language) is only used to display information. This language is also called the data display language. This language is not capable of processing the data. By using HTML we can design an online form to get information from the user and can send this information to a web server. But what will happen when the information is sent. Here comes the form handler.
A form handler is a script, which can be developed using any server side scripting language (like ASP, PHP, JSP, PERL, CGI and etc). The information sent by the HTML form is always in the form of Name and Value pairs. Two methods are used to send this information, Post and Get.
We can send this information to an email address. We can store this data to a database. We can store this data to a text file or in cookies or we can send back this information to user via web pages.
Form handler scripts can be found freely on the website. Javascript.com, download.com are useful resources to find these scripts. Some scripts are free to use and some requires payment. Free scripts provide almost the full functions.
A form handler is a script, which can be developed using any server side scripting language (like ASP, PHP, JSP, PERL, CGI and etc). The information sent by the HTML form is always in the form of Name and Value pairs. Two methods are used to send this information, Post and Get.
We can send this information to an email address. We can store this data to a database. We can store this data to a text file or in cookies or we can send back this information to user via web pages.
Form handler scripts can be found freely on the website. Javascript.com, download.com are useful resources to find these scripts. Some scripts are free to use and some requires payment. Free scripts provide almost the full functions.