> I have a program that contains a subroutine that populates variables from
> name-value pairs passed to it from an HTML form.
Perhaps you should read "Why it's stupid to `use a variable as a variable
name'":
http://perl.plover.com/varvarname.html
> AFAIK, there's no other way around this that will work with strict. So,
What about putting everything into a hash? That way you can do:
---
use strict;
use Data::Dumper;
my %p;
$p{$_} = param($_) foreach ( param() );
print Dumper \%p;
---
- Ron
_______________________________________________
Perl-Win32-Web mailing list
[EMAIL PROTECTED]
http://listserv.ActiveState.com/mailman/listinfo/perl-win32-web