我是新的PHP,但我已經做了一個註冊腳本,工作正常。但問題是每次按下提交按鈕來檢查我的錯誤,我將進入一個新的頁面。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>
使用會話錯誤信息存儲爲字符串,並顯示在同一頁上是否存在 – GBD
當你點擊提交表單,它重定向到'script/registration.php'因爲你的'action =「script/registration.php」'。 – irrelephant
表單在'registration.php'中? – itachi