PHP Programming 101

March 31st, 2008

Writing HTML Forms

Posted by Edi in Information

Photobucket

For any web content developer, writing forms in html is a very beneficial skills that one should know. It allows users to submit and enter information. The info that users input are collected through html forms either via email or adding the info to the database.

First, create the form in a word program as you can easily convert it to html forms directly.

The form must start with < form > and end with the < / form >. The common processing for programs are CGI, MySQL Perl and PHP. The programs must be available in the web server for the form data to be processed.

The < input > tag is used to generate info from users. This can be used with various form elements.

Form can be submitted into the system using < form method="POST" action=" " > tag.

Forms can be as short and simple as questions by email or as complicated as a hundred page survey.

Comments are closed.

Sorry, the comment form is closed at this time.