The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

parse_post_data - Parse the body of a POST request

SYNOPSIS

  Plugin parse_post_data

And in your plugin:

  my $value = $client->param('foo');

DESCRIPTION

By default AxKit2 does not process POST data, leaving this entirely up to the plugin to do that if it so requires. This plugin parses POST form data and places that data in the client's param() API.

Currently only processes forms of type "application/x-www-form-urlencoded" which is the default for HTML forms, but also means that file upload is not yet supported.

CONFIG

None.