Forum Moderators: coopster
[us3.php.net...]
When using mysql_connect(), it works great for connecting to my database but I hate having to store the password in cleartext. I read in a config.php file which has the password but I would really like to use a hash password instead. For example, instead of this:
$link = mysql_connect('localhost', 'user', 'cleartext_password');
I want this:
$link = mysql_connect('localhost', 'user', '5d41402abc4b2a76b9719d911017c592');
Is this possible? Thanks! :)