- or download this
# CGI post max
$CGI::POST_MAX = 4096;
...
# or (same) with implicit namespace of 'main'
$::age = 31;
- or download this
use CGI qw/:standard/;
...
start_html(),
h3('hello'),
end_html();
- or download this
# no strict, so..
$age = 31
...
# is the same as these (in the 'main' script):
$::age = 31
$main::age = 31
- or download this
$CGI::NPH=1