#!/usr/bin/perl -w ########################################################## use strict; use warnings; use diagnostics; use CGI; my $q=new CGI; print $q->header,$q->start_html(-title=>"blah"); . . .etc. #### #!/usr/bin/perl -w use strict; use warnings; use diagnostics; use CGI qw @ :standard @; print header,start_html(-title=>"blah"); . . . . etc.