hi, i have a simple script for monitoring my sever.
<HTML><HEAD><TITLE>Status page</TITLE>
<META HTTP-EQUIV=REFRESH CONTENT=30>
<BODY>
<?php
$uptime = passthru ("w");
echo "<font face=\"Tahoma\" SIZE=\"1\">$uptime</font></p>";
?>
</BODY>
</HTML>
This does not output anything though?