转到另一个页面,密码在PHP中是正确的

时间:2015-02-15 16:43:22

标签: php html passwords

我正在使用php和html开发一个应用程序,用户必须在输入中输入一个数字。但是如果数字为1则按下按钮打开另一页,但如果数字不同则不打开任何内容。我使用的代码如下:

<html>
  <head>
    <title>RHM</title> 
      <style type="text/css">
    h1 { color: red; font-family: arial; font-size: 3em; font-weight:   bolder; }
    p { color: navy; font-family: Verdana; }
   </style>
  </head>
 <body>
   <h1 align="center">INGRESE CONTRASE&Ntilde;A</h1>
     <form  action="#" method="post" >
   <p align="center"> <input type="password" name="contras" style="width:200px;height:50px;background-color:yellow;color:blue;font-size:14pt;font-family: Comic Sans MS;text-align:center;padding-right:10px;"/></p>
   <p align="center"  ><input type="submit" value="Entrar" /></p>
<?
  $Contraseña=$_POST['contras'];
   if ($Contraseña==1) {
     action=="Decidir.php";
  }
?>
  </form>
 </body>
</html>

到目前为止,这一切都没有。请帮助谢谢大家。

1 个答案:

答案 0 :(得分:0)

我解决了这个问题:

....
<?
 $Contraseña=$_POST['contras'];
   if ($Contraseña==10836053) {
     header("Location: Decidir.php");
  }
?>
</form>

 感谢sam_io。