Hi, Im using Mandrake Linux, and I have problems with php sockets. Here's my php code:
<?php
$socket = socket_create(AF_INET,SOCK_STREAM,SOL_TCP);
$connection = socket_connect($socket,'localhost',7016);
socket_write($socket,"<NCDConfigMsg></NCDConfigMsg>");
while($data = socket_read($socket,2046,PHP_NORMAL_READ))
{
echo $data;
}
?>
I get an error:
Fatal error: Call to undefined function: socket_create() in /var/www/html/Bakalauras/socket.php on line 2
Maybe I need to edit php.ini to enable sockets or smth else."Hello World" works fine its just the sockets Im having problem with.