I am making a section in the users' profile where they pick their favorite teams, which might be in different leagues (NCAA, MLB, NFL).
When the user picks the league, it takes them to the next page that lists the teams under their respective conferences (Big 10, Big 12, NFC, AFC, National League, American League, etc.)
Each team has a checkbox, so that they can pick more than one favorite team.
My dilemma is on the action page, how do I figure out which teams have been checked? Do I have to send a field containing the number of teams in the league, and then do a loop through each one to see if the current team in the loop was checked, or is there an easier way?
Thanks