I have php installed on a linux machine and mysql on a NT machine.
A php-script on the linux machine tries to connect to a database on the NT machine via
$connid=mysql_pconnect ("ID of the NT machine", "gast", "gastpwd")
The result is :
2003: Can't connect to MySQL server on '130.183.134.37' (113)
The daemon is running and when executing the same php-script on the NT machine with "localhost" everything works fine.
Whats wrong?
Chris