Hi is it possible to socket_bind with fsockopen? im using this with all my scripts...
$fs = fsockopen('example.com', 2043, $errno, $errstr, 60);
if (!$fs) {
fclose($fs);
and I need the remote conection to see me as one of my other IP's
Ive read through socket_bind
http://uk.php.net/manual/en/function.socket-bind.php
but cant see how to use it with my above code
Thanks

