in reply to retrieving similar form params
or really, you could test all paramaters in one go instead of separate conditionals.my $count = 0; for(1 .. 5) { $count++; if(param("fname$count") ne "") { if(param("lname$count") ne "") { # so on # and so on
Hope this helps.
|
|---|