You do not need to do something magical in order to work, it alone works. You just retrieve them differently. If it comes from the CGI query string, you will get it with
$self->query('param_name')
If it comes from PATH_INFO (the part that is processing CGI::Application::Dispatch
), you get it
$self->param('param_name')
source
share