2009/5/27 HELP! <izod...@gmail.com>:
> Hi,
>  error:
> php_network_getaddresses: getaddrinfo failed: No such host is known
>
>  $fstream = stream_socket_client("$con:$ip:$port", $errno, $errstr,
> $timeout);
>
>  if($fstream){
>  $br = fwrite($fstream,$login_request_block);
>  $str = stream_get_contents($fstream);
>  print( "Connection successful: $str ");
>  }
>  else{
>  return  " str: $str<br>write:$br<br> $errstr ($errno)";
>  }
>
> What could be the error

What's in $con? I'm guessing "tcp" in which case the first parameter
to stream_socket_client is wrong. See the manual for details:
http://php.net/stream_socket_client

In future please consult the manual and double-check that you're
passing valid arguments to the functions you're using before asking on
this list.

-Stuart

-- 
http://stut.net/

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to