Gossamer Forum
Home : General : Perl Programming :

Re: Getting 'instructions' from url

Quote Reply
Re: Getting 'instructions' from url In reply to
Easiest way is:

use CGI;
my $in = new CGI;

Then you can access all your variables like:

my $action = $in->param('action');

or just:

print $in->param('action');
print $in->param('number');

To print the fields action or number.

Hope this helps,

Alex
Subject Author Views Date
Thread Getting 'instructions' from url Niels Schenk 4177 Oct 20, 1998, 9:16 PM
Post Re: Getting 'instructions' from url
Alex 3981 Oct 21, 1998, 11:55 AM