我是 php 新手,但我已经制作了一个可以正常工作的注册脚本。但问题是每次我按下提交按钮来检查我的错误时,我都会进入一个新页面。
我的问题是我如何使该错误出现在同一页面上?
我用于 html 表单的代码。
我想在我所做的错误 div 框中显示错误有什么想法吗?
<div id="RegistrationFormLayout">
<h1>Registration Page</h1>
<div id="ErrorMessage"></div>
<form action="script/registration.php" method="post">
<label for="Username">Username</label>
<input type="text" name="Regi_username">
<label for="FirstName">FirstName</label>
<input type="text" name="Regi_Firstname">
<label for="LastName">LastName</label>
<input type="text" name="Regi_Lastname">
<label for="EamilAddress">Regi_EmailAddres</label>
<input type="text" name="Regi_EmailAddres">
<label for="Password">Password</label>
<input type="password" name="Regi_password">
<button type="submit" value="Submit" class="Login_button">Login</button>
</form>
</div>