我制作了一个注册页面,由于某种原因,当人们点击按钮进行注册时,它会将他们带到与我告诉代码将他们带到的页面不同的页面。
<form action="../scripts/registerparse.php" method="post">
Username <input type="text" name="username" id="username" />
Password <input type="password" name="password" id="password" />
Confirm Password <input type="password" name="confirmpassword" id="confirmpassword" />
Full Name <input type="text" name="fullname" id="fullname" />
Email <input type="text" name="email" id="email" />
Gamertag <input type="text" name="gamertag" id="gamertag" />
Console <select name="console">
<option value="XBox360">XBOX 360</option>
<option value="Playstation3">PS3</option>
</select>
<input type="submit" value="Create Your Account Now" name="submit2" id="submit2" />
</form>
代码告诉这个人去“registerparse.php”,但它把这个人带到“loginparse.php”。有谁知道它为什么这样做?