I created this into a cgi file
#!/usr/bin/perl
#
# sload - current server load
#print "Content-type: text/html\n\n";
print <<EOM;
<META HTTP-EQUIV="Refresh" CONTENT=15>
<TITLE> $ENV{SERVER_NAME} HTTPD Load </TITLE><H2> Current load average of
<A HREF=/>$ENV{SERVER_NAME}</A><HR></H2>
EOMprint `uptime`;
print "<P>";
Now I want that on my website.. how do I create the html to show it on my index.htm instead of having another window poping up showing the uptime.cgi