Suppose there is a php script that selects from the database. The connection string looks like this:
$hostname = "127.0.0.1:4040"; $username = "root"; $password = "pvptime"; $dbname = "diplom"; mysql_connect($hostname, $username, $password) OR DIE("Не могу создать соединение"); that is, I really need to transfer the login and password to mysql from port 4040, and programmatically. Tell me at least which way to dig .... Thanks in advance