Any way to lock a checkbox in a checked state?

liunx

Guest
I have PHP-generated HMTL page, in which a certain checkbox is checked depending on input from the previous page. Is there a way to keep the user from un-checking the checked box - say a "locked" property or something - or should I find another way to do this?<!--content-->Add a Disabled or Readonly to it. (<input type=text disabled>)<br />
<br />
<!-- m --><a class="postlink" href="http://www.htmlhelp.com/reference/html40/forms/input.html">http://www.htmlhelp.com/reference/html4 ... input.html</a><!-- m --><br />
<br />
You can also just make it a hidden. (<input type=hidden>)<!--content-->
 
Back
Top