How to protect the password?

A

Anonymous

Guest
This might be what youre looking for :

http://viralpatel.net/blogs/2010/12/password-protect-your-webpages-using-htaccess.html
 
May be you need to use password = SHA('$password')"
or you can use regular expression.
I am new in PHP coding so I know only this much, may be this will help you.

Thank You!
 
Ideally you want your connection information to be stored below the web root. Obviously if someone were to find a vulnerability in your code and trick it into exposing the variables it would still be found out.

The best practice is to create more than one MySQL user. The user that your script logs in as should have the least possible rights. It should also a password which is unlike any other. The user should be accessible only by the "host" that the website is running on. Often this is localhost.

Then even if I make your script somehow tell me the MySQL username and password it is little use to me as I am on a different host.
 
Back
Top