in reply to CGI "uninitialized value" question
#!/usr/bin/perl -w use strict; use CGI qw/:standard/; print header(); print start_html("This is a test"); print start_form(-action=>"/cgi-bin/test.pl", -method=>"GET"); print end_form();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: CGI "uninitialized value" question
by thor (Priest) on Dec 09, 2003 at 05:23 UTC | |
by Roger (Parson) on Dec 09, 2003 at 05:27 UTC | |
by rdfield (Priest) on Dec 09, 2003 at 09:42 UTC |