2015-09-30 73 views
1

就像标题所说的,我在验证php时遇到问题。这只是一个简单的登录php,如果用户输入了错误的信息,验证表单会执行,表示它将在倒计时五秒钟后返回到上一个登录页面。但是,如果用户输入正确的用户名和密码,它只会在验证php中显示一个欢迎文本。但是,无论输入的信息是对还是错,无论何时运行程序,它都会执行欢迎文本和倒计时。PHP validate同时执行IF语句和ELSE语句

这是我的第一个PHP:

<!DOCTYPE html PUBLIC"-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> 
    <style> 
     body { 
     margin:0; 
     font-family: Calibri} 

     .style1 { 
     color: #FFFFFF} 

    </style> 
</head> 
<body> 
    <h1>Getting Input from USER</h1><h2>EXAMPLE 1</h2> 
    <form method="post" action="validatea.php"> 
    <table width="200" border="0" cellspacing="0" cellpadding="5"> 
     <tr> 
      <th bgcolor="#006699" scope="row"><span class="style1">Username</span></th> 
      <td><label> 
      <input type="text" name="txtUsername" id="txtUsername" required="required"/> 
      </label></td> 
     </tr> 

     <tr> 
      <th bgcolor="#006699" scope="row"><span class="style1">Password</span></th> 
      <td><label> 
      <input type="password" name="txtPassword" id="txtPassword" required="required"/> 
      </label></td> 
     </tr> 

     <tr> 
      <th colspan="2" scope="row"><div align="right"> 
      <input type="reset" value="Clear"/> 
      <input type="submit" value="Login"/> 
      </div></th> 
     </tr> 
     </table> 
     </form> 
     <hr/> 


</body> 
</html> 

这里的验证PHP:

<!doctype html> 
<html> 
<head> 
<meta charset="utf-8"> 
<title>Untitled Document</title> 

    <script> 
     var ctr=5; 
     function countdown(){ 
      window.document.getElementById("cnt").innerHTML=ctr; 
      ctr--; 
      if (ctr<0) window.location="samplea.php"; 
      setTimeout("countdown()", 1000); 
     } 
     </script> 

</head> 

<body> 

<?php 
    if(isset($_POST["txtUsername"])){ 
     $uname="user";$psw="hello"; 
      if($uname==$_POST["txtUsername"] && $psw==$_POST["txtPassword"]){ 
       echo "<h2>Welcome " .$_POST["txtUsername"]."!</h2>"; 
      else{ 
       echo"Username and Password is invalid.<br/><br/>"; 
       echo'This will redirect to login form in <label id="cnt"></label>seconds...'; 
       echo'<script> countdown();</script>'; 
      } 
     } 
    } 
?> 

</body> 
</html> 
+1

你错过了'else'前一个右括号。 – Eraph

回答

1

您missplaced在第二个} IF

<?php 
    if(isset($_POST["txtUsername"])){ 
     $uname="user";$psw="hello"; 
     if($uname==$_POST["txtUsername"] && $psw==$_POST["txtPassword"]){ 
       echo "<h2>Welcome " .$_POST["txtUsername"]."!</h2>"; 
     }else{ //Forgot to close if } 
       echo"Username and Password is invalid.<br/><br/>"; 
       echo'This will redirect to login form in <label id="cnt"></label>seconds...'; 
       echo'<script> countdown();</script>'; 
     } 
    } 
?> 
+0

试过了。仍然得到相同的输出验证: 欢迎“$ _ POST [”txtUsername“]。”!“;}其他{回声”用户名和密码是无效的。 “ ”; echo'This将重定向到2秒钟内的登录表单...'; echo'';}}?> – Raios

+0

这对我来说工作得很好,你究竟发生了什么错误? –

+0

你使用的是.html文件还是.php? –

0

您还没有关闭你的第二个如果验证PHP! 关闭它,它会正常工作

+0

试过了,但还是一样。我认为代码不是问题......也许这是xampp或什么。 :/ – Raios