I want this to be displayed one by one the contents of my form, however it shows me everything at once, the right would be to display the next only after clicking send and this data I will save in an array. >
Would it be my logic that is wrong? could someone give me a hand.
Follow my test:
<?php
$totalPerguntas = 2;
$quantidadeVezes =0;
while($quantidadeVezes <= $totalPerguntas){
for ($i = 1; $i <= $totalPerguntas; $i++) {
echo '<input type="text" name="produto[1][nome]" value="nome do produto" />';
echo '<input type="text" name="produto[1][valor]" value="valor do produto" />';
echo '<input type="text" name="produto[1][codigo]" value="codigo do produto" />';
echo '<button>Enviar</button>';
}
$quantidadeVezes++;
}
?>