On Wed Oct 08 21:26:45 2008, david@davidfavor.com wrote:
Show quoted text> Also please email me the code used to create the
> example in the CPAN entry for this module.
use strict;
use HTML::Rainbow;
my $r = HTML::Rainbow->new;
print $r->rainbow(<<END_TEXT), $/;
Perl is a language optimized for scanning arbitrary text files,
extracting information from those text files, and printing reports based
on that information. It's also a good language for many system
management tasks. The language is intended to be practical (easy to use,
efficient, complete) rather than beautiful (tiny, elegant, minimal).
END_TEXT
__END__
That should do the trick. You will indeed have to use CGI or something
to set up the web page, and then push this out at the appropriate place
(or fill out a template variable or whatever).
Regards,
David Landgren