Results 1 to 5 of 5

Thread: How to make a web form?

  1. #1
    Join Date
    Jul 2006
    Posts
    128

    How to make a web form?

    hi friends,
    this is my first time on this forum. so kindly ignore my faults. i have just started the doing the html. i don't much about it. i have given an assignment to make a web form. i have tried a lot of different things but nothing was working. so i gave up and thought that some guys would help me. so i am posting my query here. hope that someone can help me soon. thanks in advance.
    "Every man is guilty of all the good he did not do". - Voltaire

  2. #2
    Join Date
    Apr 2008
    Posts
    2,005

    Re: How to make a web form?

    Working with HTML forms is a little bit hard work. The good thing is that you can design forms using any HTML editor. In order to get a form working, it is not enough to just design the form itself in HTML. First you will have to create a new HTML form handler. A form handler is a program that runs on the web-server. The processing code is commonly provided by a web host as a cgi script. The displayed form and the processing component are two separate files. The formmail script can be called by any web page not just your form.

  3. #3
    Join Date
    Feb 2008
    Posts
    1,852

    Re: How does a web form work?

    For making the web form you should know how does a web form work?
    . Just looking at the following points, you will understand it.
    1. A user visits a web page that contains a form.
    2. Then the HTML form is displayed by the web browser.
    3. The user fills in the form and submits.
    4. The browser sends the submitted form data to the web server.
    5. A form processor script running on the web server processes the form data.
    6. A response page is sent back to the browser.

    These are the steps that takes place when you input something on the web. Keeping this in mind you would have to make a web page.

  4. #4
    Join Date
    Nov 2008
    Posts
    1,192

    Re: How to make a web form?

    I think that now you should know the steps involved in the web page. Besides that you will have to do the coding for the validation and the verification which is very important for the web page. Doing this is the real tough job. A standard web form has the following parts :
    1. The HTML code for the form.
    2. Input validations.
    3. Form processor script.

  5. #5
    Join Date
    Jul 2006
    Posts
    442

    Re: How to make a web form?

    HTML has tags for creating a web form and the input elements. Instead of giving the big coding consisting of many things, I thought providing you with sample of simple HTML form would be more useful. Here is the coding for the same :
    HTML Code:
    <form action="cgi-bin/formtrial.pl" method="post">
        name: <input type="text" name="name" value="" size="25" maxlength="50">
        place: <input type="text" name="place" value="" size="25" maxlength="50">
        <input type="submit" name="submit" value="sign up!">
    </form>
    "When they give you ruled paper, write the other way..." J.R.J.

Similar Threads

  1. Replies: 5
    Last Post: 25-05-2011, 10:21 PM
  2. How to make Opera remember form field entries
    By Ansari Bros in forum Technology & Internet
    Replies: 3
    Last Post: 02-01-2011, 07:29 PM
  3. How to make a pop up form with special functionality
    By veGANor in forum Windows Software
    Replies: 5
    Last Post: 01-12-2010, 11:22 PM
  4. How to make a transparent form in VB 6.0
    By CheckMeNot in forum Software Development
    Replies: 2
    Last Post: 24-12-2008, 02:27 PM
  5. Make a form in HTML, CSS, PHP
    By Gyan Guru in forum Guides & Tutorials
    Replies: 1
    Last Post: 11-11-2008, 06:26 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,714,286,599.69461 seconds with 17 queries