Posts by ProgramadorCaio • 1 point
1 post
-
0
votes2
answers706
viewsA: Place form data in Array
You can put them in a $_SESSION, example: $_SESSION['nome'] = $dados['nome']; $_SESSION['nome'] = $dados['valor']; and rescues them on the other page, then at the end of the page clean up the…