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

  • There are programs that do this ... For example, s005.radikal.ru/i212/1403/4a/c9b4c5cc7a66.png - bogdand92
  • 3
    a feeling that the middle of the issue somewhere sailed away. - KoVadim
  • one
    Apache already works with information at the socket level. You seem to be lost in terminology. - etki

0