<form id = "msform" action = "" method = "POST">
<input type = "text" name = "name" />
<input type = "submit" name = "submit1" value "Submit" />
</form>
<form id = "msform" action = "" method = "POST">
<b>Name:</b> <?php echo $_POST['name']; ?>
<input type = "submit" name = "submit2" value "Launch" />
</form>
I am using two HTML forms, I want to display one form's data to other any one can guide me that how it is possible??