Willman023 has asked for the wisdom of the Perl Monks concerning the following question:
bW#!/usr/local/bin/perl use strict; use CGI::Fast qw(:standard); $COUNTER = 0; while (new CGI::Fast) { print header; print start_html("Fast CGI Rocks"); print h1("Fast CGI Rocks"), "Invocation number ",b($COUNTER++), " PID ",b($$),".", hr; print end_html; } AND #!/usr/local/bin/perl use strict; use CGI::Fast; while (new CGI::Fast) { my $query = new CGI; print $query->header ( ); print "Fast CGI Rocks!\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: CGI::Fast Getting Started
by perrin (Chancellor) on Mar 16, 2003 at 22:12 UTC | |
|
(z) Re: CGI::Fast Getting Started
by zigdon (Deacon) on Mar 18, 2003 at 21:34 UTC | |
by Willman023 (Scribe) on Mar 20, 2003 at 02:50 UTC | |
by zigdon (Deacon) on Mar 20, 2003 at 13:50 UTC |