#!/usr/bin/perl use strict; use CGI; my($cgi) = new CGI; print $cgi->header('text/html'); print $cgi->start_html(-title => "Example CGI script", -BGCOLOR => 'red'); print $cgi->h1("CGI Example"); print $cgi->p, "This is an example of CGI\n"; print $cgi->p, "Parameters given to this script:\n"; print ""; print $cgi->end_html, "\n";