Answer You
#1 in Business Subscribe Email Print

You are here: Home > Internet and Businesses Online > Web Design > HTML Forms -- Back to the Basics and Beyond -- Part Two -- Advanced Forms

Tags

  • first
  • continue
  • multiple
  • regular submit
  • regular submit
  • processing scriptsubmit

  • Links

  • Mabul & Kapalai Islands - Part 1
  • A Historic Peek at the Other Cheesecake
  • A Dictionary and Thesaurus: a Writer's Most Important Tools
  • Answer You - HTML Forms -- Back to the Basics and Beyond -- Part Two -- Advanced Forms

    Seecrets on Website Promotion: Marketing Plan for Joe Nogood Gift Store
    Joe Nogood owns a small but thriving gift store. He is middle-aged and he dabbles in the stock market and has survived some major crashes in his time. He is an expert on gifts, having learned the skills over the years. There is only one word to describe him, ordinary.Joe has been studying the internet for months, surveying the battlefield, as he calls it. One day, he declared to Stan, his longtime buddy. "The dotcom bubble has bottomed out, I see that we are at the beginning of a new uptrend. Let’s build an online store".Setting up a website is like setting up a business in a foreign land. Joe had to learn the foreign language (HTML, XML, PHP, Perl, CGI, Java, CSS, RSS).The first stage was easy enough. They quickly decided on JoeNoGood.com, it has a counterculture aura around it and a matching slogan as well - We’re Good at JoeN
    NAME - Name of the variable to be processed by the form processing script.
    SIZE - Specifies the number of visible selections.
    MULTIPLE - Enables users to select multiple selections.

    OPTION

    < option >

    Used with the SELECT element to display the options.

    < FORM METHOD=post ACTION="/cgi-bin/example.cgi" >
    < SELECT >
    < OPTION >option 1
    < OPTION >option 2
    < OPTION >option 3
    < /SELECT >
    < INPUT type="Submit" VALUE="Submit" >
    < /FORM >

    Option Attributes

    SELECTED - Specifies a default selection. VALUE - Specifies the value of the variable in the select element.

    Don't Lay Your Income and Traffic in One Basket-Here's the Reason
    Don't lay all your eggs in one basket. If the basket breaks or gets damaged you will loose all your eggs in one shot.Read the above sentence once again and sink it in your brain. It could probably save your internet business.Let me give you detailed explaination of the same. Let us assume that you are promoting xyz affiliate program and putting all your efforts to drive traffic to that program.After few months or years you start making a consistent income of $2000 from just one affiliate program. You are extremely satisfied with the income you are making and suddenly one morning you check out your affiliate program and you see a page that this program does not exist any more for some strange reason.You have lost everything instantly. Years of efforts and your income is back to ZERO.Let me give you another example.
    In part one of this series we focused on setting up a basic form on your website. We discussed the Form Element Attributes and began the Form Element Properties. In part two of this series, we will continue with the Form Element Properties and move on to some more advanced form options.

    If you missed part one, you can find it here: http://www.web-source.net/html_forms1.htm

    In part one of this series, we went over Text boxes, Hidden, Password and the Checkbox Form Element Properties. We will now continue with the remaining properties.

    RADIO BUTTON

    < INPUT type="radio" >

    Enables the user to select multiple options.

    < FORM METHOD=post ACTION="/cgi-bin/example.cgi" >
    < INPUT type="RADIO" name="selection1" > Selection 1
    < INPUT type="RADIO" name="selection2" > Selection 2
    < INPUT type="RADIO" name="selection3" > Selection 3
    < INPUT type="Submit" value="Submit" >
    < /FORM >

    Radio Button Attributes

    TYPE - Radio
    CHECKED - Specifies a default selection.
    NAME - Name of the variable to be processed by the form processing script.
    VALUE - The value of the selected radio button.

    SUBMIT

    < INPUT type="submit" >

    Enables users to submit the form information to the form processing script.

    < INPUT type="SUBMIT" value="Submit" >

    Submit Attributes

    TYPE - Submit
    NAME - Name of the variable to be processed by the form processing script.
    VALUE - Specifies the text to be displayed on the submit button.

    IMAGE SUBMIT BUTTON

    < INPUT type="image" SRC="url" >

    Enables users to submit the form information to the form processing script. Instead of the regular submit button, an image submit button will be displayed.

    < INPUT type="image" name="submit" SRC="image.gif" >

    Image Submit Attributes

    TYPE - Image
    NAME - Name of the variable to be processed by the form processing script.
    SRC - Image URL.

    RESET

    < INPUT type="reset" >

    Enables users to clear a form if necessary.

    < INPUT type="RESET" value="Reset" >

    Reset Submit Attributes

    TYPE - Reset
    VALUE - Specifies the text to be displayed on the reset button.

    SELECT

    < select >< /select >

    Surrounds the code for a selection drop down menu.

    < FORM METHOD=post ACTION="/cgi-bin/example.cgi" >
    < SELECT SIZE="5" >
    < OPTION >option 1
    < OPTION >option 2
    < OPTION >option 3
    < /SELECT >
    < INPUT type="Submit" value="Submit" >
    < /FORM >

    Select Attributes

    NAME - Name of the variable to be processed by the form processing script.
    SIZE - Specifies the number of visible selections.
    MULTIPLE - Enables users to select multiple selections.

    OPTION

    < option >

    Used with the SELECT element to display the options.

    < FORM METHOD=post ACTION="/cgi-bin/example.cgi" >
    < SELECT >
    < OPTION >option 1
    < OPTION >option 2
    < OPTION >option 3
    < /SELECT >
    < INPUT type="Submit" VALUE="Submit" >
    < /FORM >

    Option Attributes

    SELECTED - Specifies a default selection. VALUE - Specifies the value of the variable in the select element.

    <
    Top Sales Trainer Says: Insurance Selling Is Stymied By Risk-Averse Recruiting Strategies
    If you look at one of the great backwaters of the selling profession, it has to be the insurance industry.It hasn’t altered its recruiting and training practices for a century, and it is unlikely to do so anytime soon, because its very product is risk aversion.Insurance, as everyone knows, is about pooling risk. Actuaries work long and hard to determine how many claims will be filed during a given period, and then they adjust rates to reflect those risks and to garner a certain profit.When it comes to recruiting new agents, actuarial thinking also comes into play.Knowing that a certain percentage will wash out, insurance executives do what they can to minimize the costs of these “accidents,” these “claims” against profits, if you will.So, they shift the cost of failure to the trainees themselves by offering straigh
    tions.

    < FORM METHOD=post ACTION="/cgi-bin/example.cgi" >
    < INPUT type="RADIO" name="selection1" > Selection 1
    < INPUT type="RADIO" name="selection2" > Selection 2
    < INPUT type="RADIO" name="selection3" > Selection 3
    < INPUT type="Submit" value="Submit" >
    < /FORM >

    Radio Button Attributes

    TYPE - Radio
    CHECKED - Specifies a default selection.
    NAME - Name of the variable to be processed by the form processing script.
    VALUE - The value of the selected radio button.

    SUBMIT

    < INPUT type="submit" >

    Enables users to submit the form information to the form processing script.

    < INPUT type="SUBMIT" value="Submit" >

    Submit Attributes

    TYPE - Submit
    NAME - Name of the variable to be processed by the form processing script.
    VALUE - Specifies the text to be displayed on the submit button.

    IMAGE SUBMIT BUTTON

    < INPUT type="image" SRC="url" >

    Enables users to submit the form information to the form processing script. Instead of the regular submit button, an image submit button will be displayed.

    < INPUT type="image" name="submit" SRC="image.gif" >

    Image Submit Attributes

    TYPE - Image
    NAME - Name of the variable to be processed by the form processing script.
    SRC - Image URL.

    RESET

    < INPUT type="reset" >

    Enables users to clear a form if necessary.

    < INPUT type="RESET" value="Reset" >

    Reset Submit Attributes

    TYPE - Reset
    VALUE - Specifies the text to be displayed on the reset button.

    SELECT

    < select >< /select >

    Surrounds the code for a selection drop down menu.

    < FORM METHOD=post ACTION="/cgi-bin/example.cgi" >
    < SELECT SIZE="5" >
    < OPTION >option 1
    < OPTION >option 2
    < OPTION >option 3
    < /SELECT >
    < INPUT type="Submit" value="Submit" >
    < /FORM >

    Select Attributes

    NAME - Name of the variable to be processed by the form processing script.
    SIZE - Specifies the number of visible selections.
    MULTIPLE - Enables users to select multiple selections.

    OPTION

    < option >

    Used with the SELECT element to display the options.

    < FORM METHOD=post ACTION="/cgi-bin/example.cgi" >
    < SELECT >
    < OPTION >option 1
    < OPTION >option 2
    < OPTION >option 3
    < /SELECT >
    < INPUT type="Submit" VALUE="Submit" >
    < /FORM >

    Option Attributes

    SELECTED - Specifies a default selection. VALUE - Specifies the value of the variable in the select element.

    Pushing Your AdSense Revenues Beyond the Max!
    I’m pretty happy with where I am now with AdSense. I’ve put a lot of effort into figuring out what works and what doesn’t and I’m pretty sure that my sites are generating as much revenue as possible.Sure, there are always a few little tweaks I can do here and there, especially when I update my sites, but nothing on the scale of when I was just starting out and had no idea which positions or which colors would bring the most clicks.Those were pretty exciting days and sometimes I miss them. (Although I don’t miss the small checks.) I’d make a change to the ads, wait a week and check my stats. Sometimes the difference could be as much as several hundred percentage points — and several thousand dollars. Very few of the changes I make these days have effects as exciting as that!I’m sure lots of experienced AdSense publishers are in a
    pt.

    < INPUT type="SUBMIT" value="Submit" >

    Submit Attributes

    TYPE - Submit
    NAME - Name of the variable to be processed by the form processing script.
    VALUE - Specifies the text to be displayed on the submit button.

    IMAGE SUBMIT BUTTON

    < INPUT type="image" SRC="url" >

    Enables users to submit the form information to the form processing script. Instead of the regular submit button, an image submit button will be displayed.

    < INPUT type="image" name="submit" SRC="image.gif" >

    Image Submit Attributes

    TYPE - Image
    NAME - Name of the variable to be processed by the form processing script.
    SRC - Image URL.

    RESET

    < INPUT type="reset" >

    Enables users to clear a form if necessary.

    < INPUT type="RESET" value="Reset" >

    Reset Submit Attributes

    TYPE - Reset
    VALUE - Specifies the text to be displayed on the reset button.

    SELECT

    < select >< /select >

    Surrounds the code for a selection drop down menu.

    < FORM METHOD=post ACTION="/cgi-bin/example.cgi" >
    < SELECT SIZE="5" >
    < OPTION >option 1
    < OPTION >option 2
    < OPTION >option 3
    < /SELECT >
    < INPUT type="Submit" value="Submit" >
    < /FORM >

    Select Attributes

    NAME - Name of the variable to be processed by the form processing script.
    SIZE - Specifies the number of visible selections.
    MULTIPLE - Enables users to select multiple selections.

    OPTION

    < option >

    Used with the SELECT element to display the options.

    < FORM METHOD=post ACTION="/cgi-bin/example.cgi" >
    < SELECT >
    < OPTION >option 1
    < OPTION >option 2
    < OPTION >option 3
    < /SELECT >
    < INPUT type="Submit" VALUE="Submit" >
    < /FORM >

    Option Attributes

    SELECTED - Specifies a default selection. VALUE - Specifies the value of the variable in the select element.

    How To Write a Resignation Letter
    It is resignation time. The time has come to move on from the present job. The time to reach out for a writing pad and draft out the resignation letter. So what do you do? Should you give a list of reasons why you are leaving? Should you feel guilty about leaving your team and the organization in a lurch? Should you give a list of reasons about how badly you were treated? Should you get sentimental and list out all that you gained and how wonderful it was?The ideal resignation letter is the one that is the shortest, to the point. Give the date of resignation and enquire when the organization could let you go. The more detail you go into the more explanations follow. Giving reasons for leaving could be open to all kinds of misinterpretations, so a simple “I would like to resign from the post of xx as on this date” would do. There is no need to
    sing script.
    SRC - Image URL.

    RESET

    < INPUT type="reset" >

    Enables users to clear a form if necessary.

    < INPUT type="RESET" value="Reset" >

    Reset Submit Attributes

    TYPE - Reset
    VALUE - Specifies the text to be displayed on the reset button.

    SELECT

    < select >< /select >

    Surrounds the code for a selection drop down menu.

    < FORM METHOD=post ACTION="/cgi-bin/example.cgi" >
    < SELECT SIZE="5" >
    < OPTION >option 1
    < OPTION >option 2
    < OPTION >option 3
    < /SELECT >
    < INPUT type="Submit" value="Submit" >
    < /FORM >

    Select Attributes

    NAME - Name of the variable to be processed by the form processing script.
    SIZE - Specifies the number of visible selections.
    MULTIPLE - Enables users to select multiple selections.

    OPTION

    < option >

    Used with the SELECT element to display the options.

    < FORM METHOD=post ACTION="/cgi-bin/example.cgi" >
    < SELECT >
    < OPTION >option 1
    < OPTION >option 2
    < OPTION >option 3
    < /SELECT >
    < INPUT type="Submit" VALUE="Submit" >
    < /FORM >

    Option Attributes

    SELECTED - Specifies a default selection. VALUE - Specifies the value of the variable in the select element.

    Keys to Successful Networking While In Transition
    Let’s be real. With other pressures of life upon us, having to network can be a burden and increase stress levels.How we decide to spend valuable time networking will determine our direct success now and for the future. When in transition we often prioritize, placing business networking sandwiched between “I know I should to what for?” kinds of attitude.Many see the act of business networking as a waste of time, because the return on investment is not often immediate. In another sense, many professionals in transition make this an excellent opportunity to have “face time” with potential employers or perhaps receive viable leads.Here are several keys to help you prepare for networking while in transition:• Motivation. Keeping a positive mental attitude is critical. If you are not ready to meet valuable contacts, stay home.
    NAME - Name of the variable to be processed by the form processing script.
    SIZE - Specifies the number of visible selections.
    MULTIPLE - Enables users to select multiple selections.

    OPTION

    < option >

    Used with the SELECT element to display the options.

    < FORM METHOD=post ACTION="/cgi-bin/example.cgi" >
    < SELECT >
    < OPTION >option 1
    < OPTION >option 2
    < OPTION >option 3
    < /SELECT >
    < INPUT type="Submit" VALUE="Submit" >
    < /FORM >

    Option Attributes

    SELECTED - Specifies a default selection. VALUE - Specifies the value of the variable in the select element.

    TEXTAREA

    < textarea >< /textarea >

    Specifies an open text area.

    < FORM METHOD=post ACTION="/cgi-bin/example.cgi" >
    Enter Your Comments:< BR >
    < TEXTAREA wrap="virtual" name="Comments" rows=3
    cols=20 maxlength=100 >
    < /TEXTAREA >< BR >
    < INPUT type="Submit" VALUE="Submit" >
    < INPUT type="Reset" VALUE="Clear" >
    < /FORM >

    Textarea Attributes

    NAME - Name of the variable to be processed by the form processing script.
    COLS - The number of columns within the text area.
    ROWS - The number of rows within the text area.
    WRAP - Specifies the text wrap. The default setting is off.
    The WRAP can be set to "VIRTUAL" or "PHYSICAL" and will wrap the text as the user types.

    Tip: In order to properly format your form, you may want to place it within a table.

    Here is a basic email form set up within a table:

    < FORM action="mailto:you@yourdomain.com" >
    < TABLE BORDER="0" CELLPADDING="2" >
    < TR >
    < TD >< FONT face="Verdana" size=2 >Name:< /FONT >< /TD >
    < TD >< INPUT name="Name" value="" size="10" >< /TD >
    < /TR >
    < TR >
    < TD >< FONT face="Verdana" size=2 >Email:< /FONT >< /TD >
    < TD >< INPUT name="Email" value="" size="10" >< /TD >
    < /TR >
    < TR >
    < TD >< /TD >
    < TD >< INPUT type="submit" value="Submit" >< /TD >
    < /TR >
    < /TABLE >
    < /FORM >

    Advanced Forms

    If you have a good form processing script, you will have the option to create highly technical forms with additional options:

    Multi-page Forms

    Provides you with the ability to create a form that spans more than one page. The data you specify will be collected on the first form page and will be transferred to the second page. You can have as many pages as you need and the data will continue to be passed through each page until the final submission. Placeholders are used within each form page to collect and pass the data.

    Customized Confirmation Page

    Enables you to create a customized confirmation page that may contain your visitor's name and any other information you've collected. In addition, you can even include the date, time and your visitor's IP address (Internet Provider).

    Printable Confirmation Page

    Enables you to provide your customers with a printable confirmation page for data such as order receipts.

    Templates

    Provides you with the ability to completely customize the information your form processes. You can use a template to specify how your data will be displayed

    HTTP = HTML link (for blogs, profiles,phorums):
    <a href="http://www.answeryou.net/article/85618/answeryou-HTML-Forms--Back-to-the-Basics-and-Beyond--Part-Two--Advanced-Forms.html">HTML Forms -- Back to the Basics and Beyond -- Part Two -- Advanced Forms</a>

    BB link (for phorums):
    [url=http://www.answeryou.net/article/85618/answeryou-HTML-Forms--Back-to-the-Basics-and-Beyond--Part-Two--Advanced-Forms.html]HTML Forms -- Back to the Basics and Beyond -- Part Two -- Advanced Forms[/url]

    Related Articles:

    Xpressions Displays

    Seven Strategies How to Begin and Running Affiliate Program

    Custom eBay Stores and Marketing Can Grow Your eBay Business

    Bookmark it: del.icio.us digg.com reddit.com netvouz.com google.com yahoo.com technorati.com furl.net bloglines.com socialdust.com ma.gnolia.com newsvine.com slashdot.org simpy.com shadows.com blinklist.com

    Zarządzanie projektami cięcie wodą fotoodmładzanie Angielski w firmie pit 2009