> -----Original Message-----
> From: Timothy Johnson [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, January 23, 2002 4:28 PM
> To: 'Morrigan'; [EMAIL PROTECTED]
> Subject: RE: Can you have a function automatically make a set of
> numbered arrays? 
> 
> ...
>         ${'array'.$arraycount}[1] = $line_items[42];

Ooh, don't do this kind of thing.

See http://perl.plover.com/varvarname.html

A "set of numbered whatevers" is an array. So a "set of numbered arrays"
should be constructed as an array of arrays:

   $arr[$count][1] = 'whatever';

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to