Home  >  Article  >  Backend Development  >  用户登录基础(总冲出密码不能为空的提示栏)

用户登录基础(总冲出密码不能为空的提示栏)

WBOY
WBOYOriginal
2016-06-13 10:34:332154browse

用户登录基础(总跳出密码不能为空的提示栏)
初学php,照书上敲的下面代码,可是运行的时候即使用户名和密码都写上了,按登陆时,跳出来的还是用户名密码不能为空的提示栏
if(isset($_POST['Submit']) && $_POST['Submit']=="登陆"){
  $user=$_POST['user'];
  $pass=$_POST['pass'];
  if(empty($user) || empty($pass)){
  echo "<script>alert('用户名或密码不能为空');</script>";
  }else{
echo "输入的用户名为:$user 密码为:$pass"; 
}
}
?>

------解决方案--------------------
还不明白。你最后一个form表单组只有 submit 控件。提交后user 和pass 永远是空的。因此不能登陆。
------解决方案--------------------
-_-!
你原来提交的表单
form id="form1" name="form1" method="post" action="">


只有 submit 里面没有user pass
你原先写了3个form分别包含user pass submit 这是完全错误的。
form id="form1" name="form1" method="post" action="">

 

 

 
 
这才是正确的。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn