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


in reply to Re: Re: html/perl question
in thread html/perl question

You want to check out the CGI module.

use CGI; my $cgi = new CGI; my $where = $cgi->param('where'); print $where . "\n";