in reply to Re: Does CGI::Application expose a HTTP::Request object?
in thread Does CGI::Application expose a HTTP::Request object?
#!/usr/bin/perl use CGI::Fast(); use MyApp; use utf8; # fastcgi usage as told in: http://cgiapp.erlbaum.net/index.cgi?FastCG +I while( my $q = new CGI::Fast ){ $q->header(-charset => 'utf-8'); my $app = new Engine( QUERY => $q ); $app->run(); }
|
|---|