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";

Replies are listed 'Best First'.
Re: Re: Re: Re: html/perl question
by Anonymous Monk on May 31, 2002 at 23:29 UTC
    thanks for the info