Hey, well the problem is that I have a form with a few fields. When you click the add row button it adds a row to the table with the same fields for the user to enter. My question is, how can I get all the information the user entered in a specific field throughout the table. Here is an example..


Name|Age
Jon | 17
Joe | 59
Kelly | 25


Now I want to get the names, but since the new created fields have the same name as the first field, I get just "Kelly" when I want to get all of them. Do you understand? Javascript is creating fields under the same name and I can only access one of them. I want to be able to create them under the same name, but have access to all of them.

Thanks