User is a model. I have 100 users.
I need to present the list of all users so that admin can check or uncheck a user and then do something with it. The problem is that when the the form is submitted then on the server side I get person_1, person_2, person_3 etc. Handling these params could be problematic.
Is there a way so that on the server side I get params like
person[1], person[2], person[3]
I think I need to do something like
check_box :person[],....
I am not sure where to put the [] .