hi,
is there a way of submitting the form as soon as the checkbox is checked (or unchecked)?
ty, kazmanot.
Ya, you do that with JavaScript...
<form name="formName" action="/somepage.php" method="post"> <input type="checkbox" name="var_1" value="Y" onClick="javascript:document.formName.submit();"> </form>
ok i tried onChange. i learned that it is for comboboxes 🙂