从另一个页面/表单自动填充表单对象

I am designing a jquery form using "jquery-interdependecies-master." This form needs to be able to receive data from another form on a different page (same site). So one form bounces off a PHP and populates that data into the textarea field on a form on another page. I have no idea where to start. I cannot use html 5.

It cannot work in html. PHP with code below.

<html>
<body>

Welcome <?php echo $_POST["name"]; ?><br>
Your email address is: <?php echo $_POST["email"]; ?>

</body>
</html>