http://www.perlmonks.org?node_id=99826


in reply to How to read parameters passed from a HTML page?

this is a starter script for you, but you really should become one with the CGI module documentation (put CGI in the search field up there to the left) :-)

perldoc CGI <enter>

#!/usr/bin/perl $|++; use strict; use CGI qw/:standard/; my $field1 = param('field1'); my $field2 = param('field2'); # do something ...