in reply to Using Variables with Variables
You mean you want to do something like:
I'm not sure I'd use a separate variable where an array would make more sense. Hence my use of the array @textarea in my example.for my $ix (1..10){ $textarea[$ix-1] = param('textarea' . $ix); }
|
|---|