Suppose I have an input field like this:
///page1.php
<form action="page2.php" method="POST">
Login <input type="text" name="Login" />
<input type="submit">
</form>
after I submit, action goes to page2.php,
I can get the "Login" by : $p1 = $_POST["Login"]
the question: now I want to go on to page3.php, is there any way
I can copy $p1 from page2.php through page3.php?
Thanks,
Grace