Ill attempt to explain my issue - please bear with me.
I have 2 forms on a page, the fist form is populates the second form with address details but once called it loses all the details in it.
page1.php
<form action="anotherPage.php" id="database_submit" name="Form1">
<input type="text" name="Door Number" form="database_submit">
<input type="submit" value="Submit">
</form>
//when the below form is submitted it returns to this page
//and loses all data entered in the above form
<form action="page1.php" id="get_postcode" name="Form2">
<input type="text" name="getPostCode" form="get_postcode">
<input type="submit" value="Submit">
</form>
Is it possible to keep values entered in form1 when the user clicks form2, I have tried many things, but seem to have been unsuccessful (that's why I'm here). Hope you guys can help.