I have tried to set up a login page with username/password from a table in the database.
Login always failed when I typed the password for my username directly into the form on login.php.
From the mysql command line, I did:
select password from mytable where username=myusername;
When I cut and pasted this text into the login.php form, login succeeded.
The text stored in the database is not the same as my password en clair.
Do you think that the password data was encoded (base_64?) before storage in the db so that I must add a decode line?
Or is phprunner forgetting to encode the password accepted from the form in login.php?