PHP Error: PHP_Network_Getaddresses: Getaddrinfo Failed: (While Getting Information from Other Site.)

PHP error: php_network_getaddresses: getaddrinfo failed: (while getting information from other site.)

It's because you can't resolve the host name
Maybe DNS problems, host is unreachable...

try to use IP address instead of host name...
ping this host name... nslookup it...

Getting connection failed: php_network_getaddresses: getaddrinfo failed: Name or service not known

My database is on the same machine so I just needed to edit:

$servername = "localhost"

Now everything is working just fine.

php_network_getaddresses: getaddrinfo failed: Name or service not known

If you only want to submit GET data to the URL, you should use something straightforward like file_get_contents();

$myGetData = "?var1=val1&var2=val2";
file_get_contents($url.$myGetData);


Related Topics



Leave a reply



Submit