I'm using 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")?
I want to output plain text.
Just print it...
print $cgi->header("text/plain"),
"hello";
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With