当我在以下表单上单击提交时,仅将用户名、密码和年龄值发送到 registration.php:
<div style="top:250;left:620;position:absolute;"> <H3> Registration : </H3> </div>
<form action="Registration.php" method="Post">
<div style="top:300;left:550;position:fixed;"> <H3> Username </H3> </div><input type="Text" name="UserName" style="position:fixed; top:320; left: 675; width:150px; height:25px"><br>
<div style="top:350;left:550;position:fixed;"> <H3> Password </H3> </div><input type="Password" name="Password" style="position:fixed; top:370; left:675; width:150px; height:25px"><br>
<div style="top:400;left:550;position:fixed;"> <H3> Email Address </H3> </div> <input type="Email" name="Email" style="position:fixed; top:420;left:675;width:150px;height:25px;"><br>
<div style="top:450;left:550;position:fixed;"> <H3> First Name </H3> </div> <input type="Text" name="Fname" style="position:fixed;top:470;left:675;witdh:150px;height:25px;"><br>
<div style="top:500;left:550;position:fixed;"> <H3> Last Name </H3> </div> <input type="Text" name="Lname" style="position:fixed;top:520;left:675;witdh:150px;height:25px;"><br>
<div style="top:550;left:550;position:fixed;"> <H3> Age </H3> </div> <input type="Number" name="Age" style="position:fixed;top:570;left:675;witdh:150px;height:25px;"><br>
<input type="submit" name="fSubmit" value="Registration" style="top:600;left:550;position:fixed;width:100px;height:50px"/>
</form>
任何人都可以告诉为什么其他字段没有被提交?