The application I am trying to build is that a user can choose a certain option from the interface X number of times and I need to store their selection (and records associated with that selection) and the order in which they were selected.
The idea I had in mind was that whenever a user chooses an option an indicator for "the number of times he went in the loop" would be part of the output
For example:
In the first loop selection he chooses "DOG" and this outputted as "Output_1"
the 1 would be the first loop
In the second loop he chooses "CAT" and this is outputted as "Output_2"
the 2 would be the 2nd time around the loop
I need to build an application that does this loop X number of times and stores the output based on the order in which selection was made.
Please let me know if this is possible and any help would be appreciated