I can't seem to hide the passwords for a login form using https. When I view the headers, I see the password in plain text even though I am using encryption AND https. What am I doing wrong?
All I have is this: form.html username password (using post, send to process.php)
process.php $password = md5($_POST['password']); echo $password; (echo's encrypted password, but in headers, I can see password in plain view)
Isn't ssl supposed to be secured???