in reply to Function-oriented style CGI accessing form parameters
Have fun!#!/usr/bin/perl # the usual suspects use warnings; use strict; # CPAN modules use CGI; # create objects my $cgi = CGI->new; # read in form data my %form_data = $cgi->Vars; # output print $form_data{'parameter_name_here'};
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Function-oriented style CGI accessing form parameters
by hmbscully (Scribe) on Aug 03, 2005 at 17:04 UTC |