> I could of swore I saw a message about some Perl module that outputs > "pretty", properly indented HTML. I can't find the message in my email > client, so if anyone could help me, I'd be very grateful. > the module CGI::Pretty goto cpan.org if you don't have it installed. you can test if it's installed by running the following program. (code below)
#!/usr/bin/perl -wT use strict; use CGI; use CGI::Carp qw(fatalsToBrowser); use CGI::Pretty; my $q = new CGI; print $q->header; print "CGI::Pretty is installed!"; exit -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]