On Thu, 2 Aug 2001, Jim Conner wrote:

> How can I do this? :)

Assuming you have

  $myhash{myarrayref} = [ 'stuff', 'more stuff', 'even more stuff' ];

You can do:

  push(@{$myhash{myarrayref}}, $somedata);

or

  $myhash{myarrayref}->[3] = $somedata;

-- Brett
                                   http://www.chapelperilous.net/btfwk/
------------------------------------------------------------------------
Better living a beggar than buried an emperor.


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

Reply via email to