I would like to develop a form that would have about 20 similar fields (ex: txtname_1, txtname_2, txtname_3,...). Then I would like to add the information to a database that would have the same EmailID. The UserID would be unique for each name.
I don't want to have to use request.form 20 times to retrieve all of the names. I saw code that would allow you to do request.form on txtname_1 to txtname_20 with one line of code, but I cannot remember where I saw this code. Can someone please help me with this?