Redirecting data from one form to another page [closed]

0

How do I get the data filled out on a form on one page and send it to another page within%% of it.

    
asked by anonymous 25.11.2016 / 04:31

1 answer

2

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>
    
25.11.2016 / 11:27