Redirecting data from one form to another page

Asked

Viewed 51 times

0

How do I take the completed data in a form on one page and send it to another page within the textbox hers.

  • 1

    You have some code for example ?

  • Can you explain better what you intend to do? Have some code?

  • I have 2 Formularies on different pages and I would like to send the data from one form to the other on the other page, already filling out the form I will send the data in the textbox

1 answer

2

You can access by:

$_POST['nome-do-campo']

If your form has with the GET method you use the:

$_GET['nome-do-campo']

To fill the textarea you can do so:

<textarea><?php echo $_POST['nome-do-campo'] ?></textarea>

Browser other questions tagged

You are not signed in. Login or sign up in order to post.