#!/usr/bin/perl -w use CGI; my $q = new CGI; print $q->header; print "

Show me the monkey!


"; print $q->end_html; #### #!/usr/bin/perl -w # CGI to select data from a SQL database use CGI; # use strict; my $co = new CGI; print $co->header; print "

CGI Environment Variables Example


"; # print $co->start_html(-title=>'CGI Environment Variables Example', # -BGCOLOR=>'black', # -TEXT=>'white'); # print $co->center($co->h1('CGI Environment Variables Example')); # foreach my $key (sort keys %ENV) { # print $co->b("$key=>$ENV{$key}"), # $co->br; # } print $co->end_html;