Posted by Shek on October 16, 2011 under JavaScript |
In this post, I am going to show by checking a checkbox to disable multiple HTML text field elements
Read more of this article »
Posted by Shek on July 30, 2010 under HTML, PHP |
Editor’s note: In some cases when you try to create a HTML form for user to input data, you might like to include a set of check boxes for them to input multiple choices, however in order to get the data from a set of check boxes with PHP, I think the easier way is to use array for it, and here in this example I am going to show you how to do so
Read more of this article »
Posted by Shek on June 5, 2008 under PHP |
Editor’s note: To use the records in the MySQL database as the “values and display text” of the check box is a good idea for the administrator because he/she can add, update or delete check box’s items from the MySQL database, without touching the HTML source.
Read more of this article »
Posted by Shek on May 29, 2008 under HTML |
In HTML form, sometimes you might like to let your user to select only options from only certain elements. This is to avoid them from typing in a value which is not what you want them to input. In this case HTML form element – radio buttons could do the job, but what if in some cases, the user has to select more than one value? Check box is the answer, Here I have created an example to demonstrate the way to create check box:
Read more of this article »