Socket programming error

secyAspemssap

New Member
When I am running my program of socket I am getting an error:\[quote\] Fatal error: Call to undefined function socket_create() in C:\wamp\www\sockert\sockert.php on line 11\[/quote\]What about that error?Code:\[code\]// set some variables$host = "192.168.1.99";$port = 1234;// don't timeout!set_time_limit(0);// create socket$socket = socket_create(AF_INET, SOCK_STREAM, 0) or die("Could not create socket\n");\[/code\]I am using php5.3.0
 
Back
Top