HTML表单使用PHP和MySQL返回空白页

时间:2019-12-29 22:06:57

标签: php html mysql

我有一个HTML表单,可以毫无问题地将用户插入数据库,但是当我尝试使用不正确的用户名和密码登录时,我只会进入登录页面,在该页面中发送表单并执行数据库东西。

我一直返回空白页,它没有告诉我错误的用户名和密码。谁能帮我?

HTML表单

word_total

PHP login.pgp页面

<form method="post" action="login.php">
<div class="imgcontainer">
</div>

<div class="container">
  <label><b>Username</b></label>
  <input type="text" placeholder="Enter Username" name="username" required>

  <label><b>Password</b></label>
  <input type="password" placeholder="Enter Password" name="password" required>

  <input type = "submit" name = "submit" value = " Login "/>
  <input type="checkbox" checked="checked"> Remember me |
<a href="registration.php">Don't have an account? Click here to create one.</a> 
</div>
</form>

0 个答案:

没有答案