would it be possible to have an md5 hash of a connection to the mysql database
i got this script
$username = "username";
$password = "pass";
$host = "www.google.com";
$database = "protected";
mysql_connect($host,$username,$password) or die("Error connecting to Database!");
mysql_select_db($database) or die("Cannot select database!");
and what i would like to do would be like
$username = "14c4b06b824ec593239362517f538b29";
$password = "1a1dc91c907325c69271ddf0c944bc72";
$host = "0a137b375cc3881a70e186ce2172c8d1";
$database = "2d07fad78478d88ebafdc581a91696bf";
so that the php would then unencript it when it does the connect part