package iPLib::iRequest; require Exporter; our @ISA = qw(Exporter); our @EXPORT = qw($_POST); use warnings; use strict; use CGI::Lite; our $_POST; my $cgi = CGI::Lite->new(); $_POST = $cgi->parse_form_data('POST'); 1;