in reply to trying to populate an array from a hash of arrays

My 200th post!

You didn't include which line has the error, or whether it was a 'warn' or 'carp', so here are both possible reasons:

For some value of $key, the expression $mc_attr_lookup{$key}->{attrs} is undefined. Try dumping $mc_attr_lookup first to understand and validate its structure.

The Dumper routine expects scalars, and some element in @mc_mth_attrs is undefined. You probably wanted to do print Dumper \@mc_mth_attrs; instead.

--
[ e d @ h a l l e y . c c ]

Replies are listed 'Best First'.
Re: Re: trying to populate an array from a hash of arrays
by Anonymous Monk on Jun 20, 2003 at 14:00 UTC
    Thanks for the advice....and yes it was a silly mistake. Sorry to have wasted your time with this.

    Thanks again!