Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
This prints:use strict; use CGI; my $page = new CGI; my $msg = "Hello from ActivePerl CGI!"; # print header and start the markup output print $page->header( "text/html" ), $page->start_html( $msg ); print $page->h2($msg); print $page->end_html; # end code
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Activestate on IIS 5
by beachbum (Beadle) on Jan 31, 2006 at 18:47 UTC | |
|
Re: Activestate on IIS 5
by Discipulus (Canon) on Feb 01, 2006 at 09:13 UTC | |
|
Re: Activestate on IIS 5
by twobucks (Initiate) on Jan 31, 2006 at 19:30 UTC | |
by beachbum (Beadle) on Jan 31, 2006 at 20:00 UTC |