- or download this
package development;
...
my $forms = new CGI;
print $forms->param("elementName");
- or download this
use strict;
use warnings;
use CGI;
my $forms = new CGI;
- or download this
use strict;
use warnings;
$main::forms->param("formElement");