A few methods to find such info                              :
  
  Netcraft                                                   :
  ------------------------------------------------------------
  http://uptime.netcraft.com/up/graph/?host=www.php.net
  
  Tells us :

  The site www.php.net is running :
  
      Apache/1.3.12 (Unix) DAV/0.9.18-dev
      PHP/4.0.5-dev on Linux.


Through shell the following works :

foo$   telnet www.php.net 80   (press return)
       HEAD / HTTP/1.0         (press return twice)

  Tells us :

  Trying 208.247.106.187...
  Connected to www.php.net.
  Escape character is '^]'.
  
  HEAD / HTTP/1.0
  
  HTTP/1.1 200 OK
  Date: Tue, 10 Apr 2001 21:06:29 GMT
  Server: Apache/1.3.12 (Unix) DAV/0.9.18-dev PHP/4.0.5-dev
  X-Powered-By: PHP/4.0.5-dev
  Last-Modified: Mon, 02 Apr 2001 19:45:01 GMT
  Connection: close
  Content-Type: text/html
  Connection closed by foreign host.

And have a look at the fsockopen() examples in manual :
  
  fsockopen()                                                :
  ------------------------------------------------------------
  http://www.php.net/manual/en/function.fsockopen.php


Regards,
Philip


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to