I am creating a dynamic form in which you can add elements with javascript. This works fine.
Every time I click add new element >
I.E.
[code=javascript]
cell_3.innerHTM L = "<select name='team_A' id='team_A"+las tRow+"'></select>";
[/code]
With Dom I can access all elements with name team_A like this team_A[0] ,team_A[1] and so on later.
However can I access every element through $_GET[team_A[0]] or $_POST command or will I have to name every element seperately.
Hope you can understand what I am on about.
Every time I click add new element >
I.E.
[code=javascript]
cell_3.innerHTM L = "<select name='team_A' id='team_A"+las tRow+"'></select>";
[/code]
With Dom I can access all elements with name team_A like this team_A[0] ,team_A[1] and so on later.
However can I access every element through $_GET[team_A[0]] or $_POST command or will I have to name every element seperately.
Hope you can understand what I am on about.
Comment