in reply to Server Monitor via Web
You write a lot of things like:
$fontc ="<FONT COLOR=\"$color\">";
When you could use qq{} and not have to escape.
$fontc = qq{<FONT COLOR="$color">};
You may want to look into using here docs when printing multiple lines, and look at CGI.pm's methods for displaying HTML.
Just some observations and hints to help you along the Path of Perldom.
Cheers,
KM
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: Server Monitor via Web
by Sylvyr (Initiate) on Jun 06, 2005 at 20:00 UTC | |
RE: RE: Server Monitor via Web
by BigJoe (Curate) on May 23, 2000 at 05:51 UTC |