Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<?php
$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');
}
?>
$socket = socket_create(AF_INET,SOCK_STREAM,SOL_TCP);
$connection = socket_connect($socket,'irc.freenode.net',6667);