in reply to Re: Reading form data and printing variables using CGI.pm
in thread Reading form data and printing variables using CGI.pm
<code> #!/usr/local/bin/perl -w use strict; use diagnostics; use CGI qw(:standard); my $Firstname = param('Firstname'); print header(), start_html(-title=>"CGI.pm Example Script"), h1('Hello World!'), 'is the value of $Firstname', end_html(); exit (0);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Reading form data and printing variables using CGI.pm
by gryphon (Abbot) on Jul 19, 2002 at 22:33 UTC | |
|
Re: Re: Re: Reading form data and printing variables using CGI.pm
by PodMaster (Abbot) on Jul 19, 2002 at 21:48 UTC |