Hello
I get the variables like this:
&a25Item1=01&a25Prod1=00123&a25Desc1=ProdutoAcabadoUm
The number will depend on $qtdProd
&a25Item2=01&a25Prod2=00123&a25Desc2=ProdutoAcabadoDois
As in PHP I do the assignment below:
for($i = 0; $i <= $qtdProd ; $i++){
$a25Item i = $_GET['a25Item' i ];
$a25Prod i = $_GET['a25Prod' i ];
$a25Desc i = $_GET['a25Desc' i ];
}
I need $ a25Item to receive the 25Item by joining with the counter as if assigning:
$a25Item1 = $_GET['a25Item1'];
$a25Item2 = $_GET['a25Item2'];
And so on. Thank you in advance!
Thank you all! It worked like this:
$ item = array (); $ prod = array (); $ quan = array (); $ desc = array (); $ prec = array (); $ subt = array ();
for ($ i = 0; $ i