so this has been blowing my mind for a few hours now and i have no idea what's going on.
will produce exactly what i want, 2 text fields and a submit button labeled "Submit Query", but when i change the word "submit" to "login"
i get 3 text fields and the "Submit Query" button has disappeared. can someone PLEASE explain what's going on?
thanks :)
Code:
<form action="userLogin.php" method="get">
Username: <input type="text" name="userName" /><br/>
Password: <input type="password" name="pwd" /><br/>
<input type="submit" />
</form>
Code:
<form action="userLogin.php" method="get">
Username: <input type="text" name="userName" /><br/>
Password: <input type="password" name="pwd" /><br/>
<input type="Login" />
</form>
i get 3 text fields and the "Submit Query" button has disappeared. can someone PLEASE explain what's going on?
thanks :)
Comment