
japhy
Enthusiast
Feb 24, 2001, 6:01 AM
Post #2 of 3
(422 views)
|
Don't do that. Don't make individual variables for each one. Use a the CGI object. Your method will break with checkboxes, multiple-select, or any other field that is duplicated.
use CGI; open INPUT, "query-file"; my $quer = CGI->new(\*INPUT); close INPUT; Jeff "japhy" Pinyan -- accomplished hacker, teacher, lecturer, and author
|