I have a great php mySQL login script that works fine. Is there any other way to provide all my access information without revealing it in a script? Now I am showing all the information about access to security, which, in my opinion, is unsafe.
Is it possible to hide it?
Here is what I mean:
$host="localhost"; // Host name $username="XXXXXXXXXX"; // Mysql username $password="XXXXXXXXXX"; // Mysql password $db_name="XXXXXXXXXXX"; // Database name $tbl_name="XXXXXXXXXX"; // Table name
source share