here is the sending web page.
<body>
<form id="form1" name="form1" method="post" action="form2.php">
<label>test1
<input type="text" name="test1" id="test1" />
</label>
<input type="submit" name="submit" id="submit" value="Submit" />
</form>
</body>
Here is the receiving web page.
<body>
<?php
echo "test1=" . $test1;
?>
</body>
test1 shows nothing.
I set register_globals to On in the php.ini to no avail.
What am I missing?
TIA 🙂