0
How do I take the completed data in a form on one page and send it to another page within the textbox
hers.
0
How do I take the completed data in a form on one page and send it to another page within the textbox
hers.
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 php
You are not signed in. Login or sign up in order to post.
You have some code for example ?
– MagicHat
Can you explain better what you intend to do? Have some code?
– Jorge B.
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
– Caio Vieira