View Single Post
  #4  
Old 10-04-2003, 11:54 AM
Lakie is offline Lakie

Join Date: Mar 2002
Posts: 5,540

as a very temporary option you could use

PHP Code:
<?php

if (file_exists("online.txt"))
    echo 
'Hey my server is online!!';

    else
echo 
"unfortunately for you my server is not up";

?>
if the server is up put online.txt in the same folder as this
i really wouldnt use this if there is something else availiable.....
Reply With Quote