Hello,

PHP Code:
<?php
// set some variables
$host "xx.xx.xx.xx";
$port 3000;
// don't timeout!
set_time_limit(0);
// create socket
$socket socket_create(AF_INETSOCK_STREAM0) or die("Could not create
socket\n"
);
// bind socket to port
$result socket_bind($socket$host$port) or die("Could not bind to
socket\n"
);
// start listening for connections
$result socket_listen($socket3) or die("Could not set up socket
listener\n"
);
// accept incoming connections
// spawn another socket to handle communication
$spawn socket_accept($socket) or die("Could not accept incoming
connection\n"
);
// read client input
$input socket_read($spawn1024) or die("Could not read input\n");
// clean up input string
$input trim($input);
// reverse client input and send back
$output strrev($input) . "\n";
socket_write($spawn$outputstrlen ($output)) or die("Could not write
output\n"
);
// close sockets
socket_close($spawn);
socket_close($socket);
?>
There is my PHP code (I didn't make it - from a tutorial). However, when running this I get the error:


Warning: socket_bind() [function.socket-bind]: unable to bind address [99]

Does anyone know what this means or an alternative way of listening to a port with PHP. The IP has something running on the port 3000, and every 30 seconds it sends out data. It's this data that I need to get.

+rep to correct answer.

Thanks.