Help for this page
use CGI qw(:standard);
use CGI qw(:standard); ... print header, start_html, h1('Test Page'); print p("The name is $name"); print end_html;
use CGI; ... print $q->header, $q->start_html, $q->h1('Test Page'); print $q->p("The name is $name"); print $q->end_html;