Posts by Zanks • 13 points
2 posts
-
0
votes3
answers607
viewsA: How to generate multiple inputs within a repeat loop
I ended up using PHP same, but the two answers helped me a lot in another part of the program in which I need to necessarily build by Javascript, thank you very much!. Follow the solution code…
-
1
votes3
answers607
viewsQ: How to generate multiple inputs within a repeat loop
I need to create inputs based on the amount the user types. For example: var quantidade = 5; \\\usuario digitou for(int i = 0; i< quantidade; i++){ //aqui vem os inputs } In that case I would…