登録ページを作成しましたが、何らかの理由で、ユーザーが登録ボタンを押すと、コードに表示するように指示したページとは別のページに移動します。
<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」に移動します。なぜこれを行っているのか、誰かが考えを持っていますか?