خدمت شما :
کد PHP:
//first.html
<html>
<form action="first.php" method=post>
<input type="text" value="name" name="name">
<input type="text" value="family" name="family">
</form>
</html>
//first.php
<html>
<form action="second.php" method=post>
<input type="hidden" value="<?=$_POST['name']>" name="name">
<input type="hidden" value="<?=$_POST['family']>" name="family">
<input type="text" value="url" name="url">
<input type="text" value="email" name="email">
</form>
</html>
//second.php
<?php
print_r($_POST);
?>