Help for this page

Select Code to Download


  1. or download this
    else {
                    while ($line = <>) {
                            print $client $line;
                    }
            }
    
  2. or download this
    #assuming $server initialized
    while($child = $server->accept() )
    ...
      #CHILD STUFF
      exit; #kill the child process
    }