hello!
I have a form and in this form I have 48 checkboxes. is there a way that my program
could remember which ones were selected?
looks like this::
<form>
<input type=checkbox name=cb[0] value=1>
<input type=checkbox name=cb[1] value=1>
<input type=checkbox name=cb[2] value=1>
<input type=checkbox name=cb[3] value=1>
<input type=checkbox name=cb[4] value=1>
...
<input type=checkbox name=cb[45] value=1>
<input type=checkbox name=cb[46] value=1>
<input type=checkbox name=cb[47] value=1>
</form>
I would lke to remember which ones the user clicked on...
Thank you!
Rom