hello I was wondering if I can run my PHP
socket
server on the browser I have a simple code
$host = "0.0.0.0";
$somthing= 0;
$sock = (AF_INET, SOCK_STREAM, 0);
socket_listen($sock);
while(true)
{
//do somthing
}
at the moment m using cmd to run the server can I use my web browser to do this so basically what I need is my browser to run the server and get replies from a client I can setup the client if someone can guide me on what to do so I can make it run on the server