• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Password Protection Question

Asparagus

Senior member
Hi all,

Password protection newbie here...

I am creating a website that requires the user to login with a username and password. I DON'T want the login page to be a pop up box - I want it to be an actual HTML page where the user can enter a user ID and a password and then hit the "submit" button. When the "submit" button is pressed, I will have a PHP script that handles all of the login/password validation stuff...

My question is this - when the user presses the "submit" button - is this information sent SECURELY to the PHP script? Is there a secure way to encrypt the password before it is sent to the PHP script? Any suggestions here???

Thanks!
 
you can use javascript to encode the password as the user is typing it in or before the form is submitted (use javascript to subit the form)...but then all someone has to do is reverse engineer your source....
 
Back
Top