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.
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:
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:
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: