in reply to Re: I almost got it!
in thread I almost got it!

Can you explain that a bit more? I dont know what to do with the code you gave me...
or tell me where to get that CGI.pm thing at?
Thanks!

Replies are listed 'Best First'.
RE: RE: Re: I almost got it!
by btrott (Parson) on Apr 25, 2000 at 00:41 UTC
    CGI.pm should already be installed on your system as it comes with Perl, I believe. Do perldoc CGI to see if it's installed. It's a Perl module that gives you nice and easy access to all of the CGI parameters passed in to your script.

    You should put

    use CGI; my $query = new CGI;
    at the top of your script before you do anything like
    my $name = $query->param('name');