How do I get the data filled out on a form on one page and send it to another page within%% of it.
How do I get the data filled out on a form on one page and send it to another page within%% of it.
You can access by:
$_POST['nome-do-campo']
If your form has the GET method you use:
$_GET['nome-do-campo']
To fill textarea
you can do this:
<textarea><?php echo $_POST['nome-do-campo'] ?></textarea>