in reply to Best suite

print $query->header( "text/html" ), $query->start_html(-title => "My First CGI Script", -bgcolor => "#ffffcc" ), $query->h1( "This is a pretty lame web page" ), $query->p( "Who is this Ovid guy, anyway?" ), $query->end_html

Whatever you decide to do, don't do that. See the CGI.pm docs for reasons to avoid this.


🦛