doubingguan3425 2011-08-29 22:35
浏览 30
已采纳

在php url中插入登录凭据?

I am trying to be able to log-in to a PHP webpage with the credentials in the URL.

Example:

http://www.mywebsite.com/logon.php?logon=user&password=password

The URL above inserts user and password into the text fields but does not submit the page and continue.

  • How do I submit a page via URL?
  • Is it possible? If not, sorry for the question.
  • 写回答

2条回答 默认 最新

  • doupan6648 2011-08-29 22:48
    关注

    There are two versions of the answer, here: how to do what you asked, and how to do what you actually want. Chances are you don't actually want to do it the way you asked, because passing the password in the URL field is a super-bad idea. To answer the question as asked, it goes like this:

    • To read the values out of the URL string, you can use the $_GET array. To print what logon is passed, do:

      echo($_REQUEST[logon]);
      

      To submit the data in the first place, you'll need to use a form. There are other methods, but this is the most basic. Something like this:

      <form action="logon.php" method="get">
      <input name="logon">
      <input name="password">
      <input type=submit value="Login">
      </form>
      
    • That being said, better practice would be to pass the password through the POST parameter, which at least isn't visible in the addressbar. To do this, simply substitute:

      <form action="logon.php" method="post">
      <input name="logon">
      <input name="password">
      <input type=submit value="Login">
      </form>
      
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?