我的HTML:顯示錯誤消息
<form name="loginForm" method="post" action="login.php" onsubmit="return(validate());" >
<p><label><b>Username</b></label>
<input name = "Username" type = "text" maxlength = "30">
</p>
<p><label><b>Password</b></label>
<input name = "Password" type = "text" maxlength = "30">
</p>
<p>
<input type = "submit" value = "Login">
<input type = "reset" value = "Clear">
<span class="errorMsg" id="validation"></span>
</p>
</form>
我的PHP代碼:
echo " <script type= \'text/javascript\'>
document.getElementById('validation').innerHTML = 'Username or Password is Incorrect';
</script>";
我想實現的是顯示附近的提交按鈕,錯誤消息。
html和php代碼位於2個不同的文件中。 index.html和login.php都在同一個文件夾中。
包括在HTML你的PHP文件將解決這個問題:http://php.net/manual/en/function.include.php – Michelangelo