search

Home  >  Q&A  >  body text

PHP constants and variables external variables code problems in the textbook

<html>                                                                                                        <?php

     <head>  </head>      <body>                                                                         $u=$_GET['username'];

        <form  ancion="reg.php" method="get">                                                      echo $u;

          <input type="text"  name="username">                                                        $password=$_GET[owd];

         <input type="password"  name="pwd">                                                       echo $password;

         <input type="submit"  value="提交">                                                      ?>

         </body>

</html>                     这两段代码  是不是我注册输入用户名密码 提交后  在  reg.php里面显示我注册的  信息        ?

                     如果是的话 我怎么操作 代码都看懂了  也写的对的  但是 实现不了???求大神谢谢                                     

꧁ 诱 ꧂꧁ 诱 ꧂2656 days ago810

reply all(1)I'll reply

  • PHP中文网

    PHP中文网2017-08-18 09:14:19

    $password=$_GET[owd]; Wrong writing, it is $password=$_GET['pwd'];

    reply
    0
  • Cancelreply