Seo Forum

Website Design and Graphics => Website Design => Topic started by: pixhngeh on 12-29-2011, 02:50:18

Title: How do I make the check box?
Post by: pixhngeh on 12-29-2011, 02:50:18
Hello,
I need the check boxes to remain in the same state when the submit button is pressed, so that changes can be made and a new total generated with a re-press of the submit button.How do I make the check boxes,thanks for all the helps.
Title: Re: How do I make the check box?
Post by: Elev8 on 03-15-2012, 09:01:49
You will have to store the data in a users session or cookie to then detect when the page has reloaded.
Title: Re: How do I make the check box?
Post by: Michealyardy on 06-10-2018, 22:54:31
    Open up your favorite HTML or text editor. Some great ones are: Dreamweaver. Aptana.
    Enter the following HTML code into your editor. <form> <input type="checkbox" name="enter name here" value="enter value here">CONTENT.
    In between the quotations, enter the name or value of the check box.

To know more with videos visit W3school.
Title: Re: How do I make the check box?
Post by: c4cyber on 06-17-2018, 05:28:50
I think you are trying to develop multi page form. If you don't want to record any event for check box at first page why you have to include it as well.
Google how to create multi-page form to remember states via sessions and use server side programming language to implement it.