I need to use some PHP loop to get the form data on a rendering page. I thought of putting a count variable inside an input name ID box, like this:
$c=1;
while($c <= 5) {
$tabela[$c]= $_POST['nome$c'];
}
You could print later using:
$c2= 1;
while($c2 <= 5) {
echo $tabela[$c2];
}
The server can not identify $_POST['nome$c'];
, I do not know what I'm doing