start_html("Hello"), $cgi->h1("Hel...">
I use HTTP::Server::Simple::CGI
HTTP::Server::Simple::CGI
print $cgi->header("text/plain"), $cgi->start_html("Hello"), $cgi->h1("Hello $who!"), $cgi->end_html;
Is there something like $cgi->start_text("hello") ?
$cgi->start_text("hello")
I want to display plain text.
Just print it ...
print $cgi->header("text/plain"), "hello";