I had Check boxes as below:
input name="rec type" type="check box" value="1"
one
input name="rec type" type="check box" value="2"
Two
input name="rec type" type="check box" value="3"
Three
input name="rec type" type="check box" value="4"
Four
Now if i checked on any one check box,i have to get all check box values as array and if user checks on check box one,i need to disable two and four Check boxes.
Any inputs on how to do this?
Thanks in Advance..