Network Php

   // Establish a port 80 connection with www.example.com
   $http = fsockopen("www.rntsoft.com",80);
   // Send a request to the server
   $req = "GET / HTTP/1.1\r\n";
   $req .= "Host: www.rntsoft.com\r\n";
   $req .= "Connection: Close\r\n\r\n";
   fputs($http, $req);
   // Output the request results
   while(!feof($http)) {
      echo fgets($http, 1024);
   }
   // Close the connection
   fclose($http);
?>