表单传来的数据
比如:
<form method=post action=2.php>
<input type=text name=mydata value="myfirst">
<input type=submit>
</form>
在下2.php 中只要用$mydata直接用就可以了
$mydata的在值就已经是myfirst了