I get an error when running this script with sockets
It shouts something like..
Fatal error: Call to undefined function: socket_create() in C:\Archivos de programa\Abyss Web Server\htdocs\sock.php on line 2
Code:
$socket = socket_create(AF_INET, SOCK_STREAM, SOL_TCP);
socket_bind($socket,'localhost',1337);
socket_listen($socket);
while($connection = socket_accept($socket))
{
socket_write($connection,'You\'ve successfully connected to my
computer!\r\n');
}
It shouts something like..
Fatal error: Call to undefined function: socket_create() in C:\Archivos de programa\Abyss Web Server\htdocs\sock.php on line 2